変数をテキスト ファイルに書き込むスクリプトがあり、fwrite() を使用しています。ここにスクリプトがあります:
<?php
error_reporting(E_ALL ^ E_NOTICE);
$filename = 'Report.txt';
$batch_id = $_GET['batch_id'];
$status = $_GET['status'];
$phone_number = $_GET['phone_number'];
//check to see if I could open the report.txt
if (!$handle = fopen($filename, 'a')) {
echo "Cannot open file ($filename)";
exit;
}
// I am trying to write each variables to the text file
if (fwrite($handle, $phone_number) === FALSE) {
echo "Cannot write to file ($filename)";
exit;
}
echo "Success, wrote ($phone_number) to file ($filename)";
fclose($handle);
?>
ここに2つの問題があります:
1.Batch_ID でレポートを受け取るので、各レポート テキスト ファイルに、batch_ID を使用したプレフィックスを付けたいと思います (例: 5626_Report.txt)。
2.関数 fwrite() に複数の変数を渡したい。各 $phone_number の次に $status を書きたい。