我有一个用PHP编写的表单结构网页。提交信息时,它会提供唯一的ID。
现在我希望在文件中使用此唯一ID。例如:
$input = "man.id: ".$id;
其中$id
是来自网页的回复。
$input
出现在同一个PHP文件中。
答案 0 :(得分:1)
以下是如何使用PHP将文本写入(附加)文件的示例:
$id = GetID(); // GetID can return a value stored on disk that gets incremented
$input = "man.id: " . $id;
$logfile = "mypage.log";
$file = fopen($logfile, 'a'); // Try to open the file in Append mode
if($file) // If the file was opened successfully, i.e. if $file is a valid file pointer
{
flock($file, LOCK_EX); // Exclusive lock
fwrite($file, $input);
fclose($file);
}