开发者

How to identify that the string is a path to any file, using PHPcode?

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜