<?php header("content-type:text/html;charset=utf-8"); $file = './aa.txt'; ###判断是不是文件 if(is_file($file)){ ####判断是不是可写 if(is_writable($file)){ // echo "yes"; ###判断文件是不是可读 if(false !== ($handle=fopen($file,'a'))){ // echo 1; ###执行写入操作 $content="56789 ";
// file_put_contents($file,$content,FILE_APPEND); //用于装载执行失败的数据 fwrite($handle,$content); ###效果同上 fclose($handle); }else{ echo "no open"; } }else{ echo "no write!"; } }else{ echo "no file"; } ?>