问答详情
源自:5-5 PHP文件系统之写入内容到文件

输出结果有点小问题

<?php
$filename = '/data/webroot/usercode/code/test2.txt';
//写入一个字符串到$filename文件中
$str = 'abc';
$fp = fopen($filename,'w');
file_put_contents($filename,$str);
fwrite($fp,'hello');
if(file_exists($filename)){
   echo file_get_contents($filename);
}
?>

提问者:ruiy 2015-10-13 15:06

个回答

  • moka先森
    2015-10-13 18:59:59
    已采纳

    你是不是在/data/webroot/usercode/code/没有创建text2.txt ?提示错误是什么?