阅读量:0
file_get_contents
本身是一个用于从文件中读取内容的函数,它并不支持直接写入文件。但是,你可以使用 PHP 的其他函数来实现写入文件的操作。
例如,你可以使用 file_put_contents
函数将内容写入文件。以下是一个简单的示例:
$content = "Hello, World!"; $filename = "example.txt"; // 将内容写入文件 if (file_put_contents($filename, $content)) { echo "Content written to file successfully."; } else { echo "Failed to write content to file."; }
在这个示例中,我们首先定义了要写入文件的内容和文件名。然后,我们使用 file_put_contents
函数将内容写入文件。如果写入成功,函数返回 true
,否则返回 false
。