文件相關處理
阿新 • • 發佈:2018-08-27
是否 iconv utf get 字符 str 文件是否存在 exist pan
常用的一些對於文件相關處理
一. 判斷文件是否存在
// 驗證文件是否存在 function existFile($file) { if( empty($file) ) return false; if(stripos($file,‘http‘) === 0){ // 遠程圖片 $header = get_headers($file,1); return isset($header[0]) && (strpos($header[0],‘200‘) || strpos($header[0],‘304‘)) && stripos($header[0],‘OK‘); }else{ // 驗證是否有中文 if(preg_match("/([\x81-\xfe][\x40-\xfe])/", $file, $match)){ $file = iconv(‘UTF-8‘, ‘GBK‘, $file); } return file_exists($file); } }
註: 匹配字符串全部是中文
preg_match_all("/^([\x81-\xfe][\x40-\xfe])+$/", $str, $match)
文件相關處理