<?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 ?提示错误是什么?