yskl 发表于 2018-2-11 12:05:07


            本文实例总结了PHP文件操作。分享给大家供大家参考,具体如下:
操作文件的常用方法:
flie_put_contents(url,str);
file_get_contents(url);
';
file_put_contents($path,$str);
echo file_get_contents($path);
echo '';
file_put_contents($path,"\r".$str,FILE_APPEND);
echo file_get_contents($path);
页: [1]
查看完整版本: PHP文件操作实例总结