萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php文件是否存在 file_exists 用法

php文件是否存在 file_exists 用法

php文件是否存在 file_exists 用法

說明:file_exists($filepath);

本函數是用戶判斷當前給的文件名是否存了了,下面我們來看個實例。


$filepath = './test.php';

if( file_exists($filepath) )
{
 echo '文件存在';
}
else
{
 echo '文件不存在';
}

輸出結果為:文件存在了

 

本站原創轉載注明www.111cn.net/phper/php.html

copyright © 萬盛學電腦網 all rights reserved