文件是否存在php
❶ php如何判斷文件是否存在,包括本地和遠程文件
當檢查的文件是本地時用php自帶的file_exists檢查就行了,而此函數只能檢查本地的函數是否存在, 所以如果要檢查遠程的文件是否存在只能用其它的方法了。 如果所伺服器中php的配置開啟了「allow_url_fopen = On」,即允許遠端訪問,那麼也很簡單,其實這個是php.ini中默認開啟的, 用fopen函數判斷就行了,能打開說明存在 如果allow_url_fopen = Off那麼可以用socket通訊來解決 下面寫的一個通用函數my_file_exists來檢查文件是否存在 function my_file_exists($file){if(preg_match('/^http:\/\//',$file)){//遠程文件if(ini_get('allow_url_fopen')){ if(@fopen($file,'r')) return true;}else{$parseurl=parse_url($file); $host=$parseurl['host']; $path=$parseurl['path']; $fp=fsockopen($host,80, $errno, $errstr, 10); if(!$fp)return false; fputs($fp,GET {$path} HTTP/1.1 \r\nhost:{$host}\r\n\r\n); 現在就可以調用此函數來檢查文件的存在性,而不用去考慮是遠程還是本地文件,或者是否禁用了allow_url_open
❷ PHP用什麼方法判斷一個文件存在
在PHP中,使用file_exists()函數可以判斷一個給定的文件是否存在。如下的程序例子給出了判斷「logfile.txt「是否存在的例子。
<?php
$filename = "logfile.txt";
if ( file_exists( $logfile ) ){
echo "file ".filename." was found";
}
?>
❸ php判斷目錄是否存在
file_exists — 檢查文件或目錄是否存在
說明
bool file_exists ( string $filename )
檢查文件或目錄是否存在。
參數
filename
文件或目錄的路徑。
在 Windows 中要用 //computername/share/filename 或者 \computernamesharefilename 來檢查網路中的共享文件。
返回值
如果由 filename 指定的文件或目錄存在則返回 TRUE,否則返回 FALSE。
Note:
This function will return FALSE for symlinks pointing to non-existing files.
Warning
如果因為安全模式的限制而導致不能訪問文件的話,該函數會返回 FALSE。然而,可以使用 include 來包含,如果文件在 safe_mode_include_dir 所指定的目錄里。
Note:
The check is done using the real UID/GID instead of the effective one.
Note: 因為 PHP 的整數類型是有符號整型而且很多平台使用32位整型, 對2GB以上的文件,一些文件系統函數可能返回無法預期的結果 。
範例
Example #1 測試一個文件是否存在
<?php
$filename='/path/to/foo.txt';
if(file_exists($filename)){
echo"文件$filename存在";
}else{
echo"文件$filename不存在";
}
?>
//以上內容來自官方PHP開發幫助文檔
❹ php判斷文件夾是否存在不存在則創建
//直接這樣即可:
$dir='./test/test';
is_dir($dir)ORmkdir($dir,0777,true);//如果文件夾不存在,將以遞歸方式創建該文件夾
❺ php判斷文件夾或文件是否存在,及不存在時如何創建
如果文件夾不存在直接創建:
$folder='test';
is_dir($folder)ORmkdir($folder,0777,true);
文件不存在直接打開文件就創建了
$file='index.php';
is_file($file)ORfclose(fopen($file,'w'));
❻ php判斷本地文件是否存在
PHP文件編碼導致的問題.
<?php
$s='C:UsersAdministratorPictures狗.jpg';
var_mp(file_exists($s));
在 使用 ANSI 編碼的情況下. 上述代碼. 在Windows環境下執行成功.
如果換成 utf-8 編碼. 則會輸出 false .
改成以下代碼. 則在 utf-8 編碼下 運行正常
<?php
$s='C:UsersAdministratorPictures狗.jpg';
var_mp(file_exists(mb_convert_encoding($s,'gbk','utf-8')));
❼ php如何實現判斷文件是否存在後跳轉
file_exists
(PHP 3, PHP 4 )
file_exists -- 檢查文件或目錄是否存在
說明
bool file_exists ( string filename)
如果由 filename 指定的文件或目錄存在則返回 TRUE,否則返回 FALSE。
在 Windows 中要用 //computername/share/filename 或者 \\computername\share\filename 來檢查網路中的共享文件。
例子 1. 測試一個文件是否存在
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
print "The file $filename exists";
} else {
print "The file $filename does not exist";
}
?>