欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php判断文件是否存在file_exists 与 is_file详解_PHP教程

程序员文章站 2022-05-26 09:22:18
...
php教程判断文件是否存在file_exists 与 is_file详解


$file ='新建 文本 文档.txt';
$file1 ='a.txt';

list($name,$ext) = explode('.',$file);
echo $name;

if( is_file( $name.'.txt' ) )
{
echo 'file存在';
}

if( file_exists( $file1 ) )
{
echo 'file1存在';
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632323.htmlTechArticlephp教程判断文件是否存在file_exists 与 is_file详解 $file ='新建 文本 文档.txt'; $file1 ='a.txt'; list($name,$ext) = explode('.',$file); echo $name; if( is_file( $...