ruiy
2015-10-13 15:06
<?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);
}
?>
你是不是在/data/webroot/usercode/code/没有创建text2.txt ?提示错误是什么?
PHP进阶篇
181835 学习 · 2577 问题
相似问题