我在一个免费的支持PHP的服务器上安装了此脚本:
<html> <body> <?php $file = fopen("lidn.txt","a"); fclose($file); ?> </body> </html>
它创建文件lidn.txt,但为空。
lidn.txt
如何创建文件并向其中写入内容,例如“猫追老鼠”行?
您可以使用更高级别的函数,例如file_put_contents($filename, $content),与调用fopen(),相同fwrite(),然后fclose()依次将数据写入文件。
file_put_contents($filename, $content)
fopen()
fwrite()
fclose()