PHP 文件操作实用代码 PHP | 2022-9-08 11:02 | 1,198 | 1 1、检测目录是否存在 function check_dir($path, $create = false) { if (is_dir($path)) { return true; } return false; } 2、创建目录 function create_dir($path) { if (! file_exists($path)) { if … 文件操作