これは私のhtml出力です。.php ファイルから
public class Resource {
public static int cliamer = fgfgfger;
public static int reporting = grgrging;
}
これをmytext.javaに保存したいのですが、phpでどのように可能ですか
これは私のhtml出力です。.php ファイルから
public class Resource {
public static int cliamer = fgfgfger;
public static int reporting = grgrging;
}
これをmytext.javaに保存したいのですが、phpでどのように可能ですか
このようなもの:
$myData = "java code goes here";
$fp = fopen('dir/mytext.java', 'w');
fwrite($fp, $myData);
fclose($fp);
ここでの主な失敗点は、フォルダーのアクセス許可です。
// beginning of your script
ob_start();
// your script
// end of your script
$data = ob_get_contents();
ob_end_clean(); // or ob_end_flush(); if you also want to output something
file_put_contents(dirname(__FILE__).'/mytext.java', $data);