输出结果有点小问题
<?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);
}
?>