我是一名前端开发人员,但我正在学习php,所以我可以做基本的后端工作。我的代码似乎是在回显字符串之后添加字符数量。
<?php
$openFile = fopen("file.txt","w");
$name = "Chris";
fwrite($openFile,$name);
fclose($openFile);
$openFile = fopen("file.txt","r");
echo readfile("file.txt");
fclose($openFile);
?>
这是我在这里发布的内容。 -2。
答案 0 :(得分:1)
我猜您是否正在尝试阅读该文件的内容?
readfile上的PHP文档:
Reads a file and writes it to the output buffer.
5是读取的字节数。
您可以使用file_get_contents
:
<?php
$openFile = fopen("file.txt","w");
$name = "Chris";
fwrite($openFile,$name);
fclose($openFile);
echo file_get_contents("file.txt");
?>