0
使用PHP,如何識別字符串是任何文件的路徑?如何識別字符串是任何文件的路徑,使用PHPcode?
使用PHP,如何識別字符串是任何文件的路徑?如何識別字符串是任何文件的路徑,使用PHPcode?
$path = 'string';
if(is_file($path)){
// look, it's a file!
}
is_file($filename)
is_dir($filename)
將返回true
如果字符串指向現有的文件或目錄。