header("Content-Type: text/html; charset=utf-8");$file_path="checkPhoto.php";$fp = fopen($file_path,"r");$str ="";while(!feof($fp)){$str .= fgets($fp);//逐行读取。如果fgets不写length参数,默认是读取1k。}$str = str_replace("\r\n","",$str);echo $str;?>
这个不好弄