<?phpheader('content-type:text/html;charset=utf-8');
date_default_timezone_set('prc');
$filename="./test1.txt";
echo '檔案型別為',filetype($filename),'
';echo '檔案大小為:',filesize($filename),'
';echo '檔案建立時間為:',filectime($filename),'
';echo '檔案建立時間為:',date('y年m月d日 h:i:s',filectime($filename)),'
';echo '檔案修改時間為:',date('y年m月d日 h:i:s',filemtime($filename)),'
';echo '檔案最後訪問時間為:',date('y年m月d日 h:i:s',fileatime($filename)),'
';echo '';
var_dump(
is_readable($filename),
is_writable($filename),
is_executable($filename)
var_dump(is_file($filename));//檢測是否是檔案,並且檔案存在
php檔案資訊相關api
date default timezone set prc header content type text html charset utf 8 檔案資訊相關api filename test.txt filename test 獲取檔案型別 echo 檔案型別為 filetype filenam...
php 獲取檔案資訊相關基礎函式
header content type text html charset utf 8 date default timezone set prc 檔案資訊相關api filename test1.txt filename test filetype filename 獲取檔案的型別,返回的是檔案的...
檢視類的相關資訊 PHP函式,非反射API
基類 class product 繼承基類的類 class gift extends product 操作類,檢視對應的類的資訊 class shopcar 獲取對應 物件 的 類 public function showclass instanceof 能根據繼承樹往上找,而 get class ...