php is_file is_dir需要注意的问题
如果有中文 必须转码到gbk 后判断
$file_path = __DIR__ . '/324234/' . $logname . 'log.log'; $file_path = iconv('UTF-8', 'GBK', $file_path); if (!is_file($file_path)) { echo '路径不对'; exit(); }
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/18997.html