文件目录共1篇
PHP operation directory or file common methods-Small seven notes

PHP common methods to manipulate directories or files

1、转化 \ 为 / /** * 转化 \ 为 / * * @param string $path 路径 * @return string 路径 */ function dir_path($path) { $path = str_replace('\\', '/', $path); if(substr($path, -1) != '/'...
2 years ago
019415