Using P开发者_如何学GoHP, How to identify that the string is a path to any file?
http://pt.php.net/is_file
$path = 'string';
if(is_file($path)){
// look, it's a file!
}
is_file($filename)
is_dir($filename)
Will return true
if the string points to an existing file or directory.
精彩评论