gpt4 book ai didi

php - 如何在 PHP 中使用 fwrite() 写入多个变量?

转载 作者:行者123 更新时间:2023-12-05 03:15:44 25 4
gpt4 key购买 nike

<分区>

我有一个将变量写入文本文件的脚本,我正在使用 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);


?>

我这里有两个问题:

1.当我通过 Batch_ID 收到报告时,我想使用 batch_ID 为每个报告文本文件命名一个前缀,例如:5626_Report.txt

2.我想将多个变量传递给函数 fwrite(),我想在每个 $phone_number 旁边写上 $status。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com