// 写入文件
file_put_contents('E://file.log',"shuoeasy!");
// 读取文件
$str = file_get_contents('E://file.log');
echo '文件内容:'.$str;
输出:
文件内容:shuoeasy!
// 写入文件
file_put_contents('E://file.log',"shuoeasy!");
// 读取文件
$str = file_get_contents('E://file.log');
echo '文件内容:'.$str;
输出:
文件内容:shuoeasy!