PHP 獲取檔名和副檔名的方法

2022-03-30 15:43:31 字數 648 閱讀 5999

dirname(path)

path: 代表你的檔案路徑,必須為絕對路徑,可以使用__file__, 表示列出當前檔案的絕對路徑,包含檔名

函式會返回當前檔案的上一級路徑,也就是除了檔名稱的路徑

eg:

echo __file__;

//輸出

//d:\phpstudy\www\xml_drivers\test.php

echo dirname(__file__);

//輸出

//d:\phpstudy\www\xml_drivers

glob(dirname/*)

獲取指定資料夾下的指定檔案,包括資料夾名稱,如果想獲取指定資料夾下的所有xml檔案, 可以使用dirname/*.xml

結果返回乙個陣列

可以通過下面的**實現獲取指定資料夾下的所有檔案

function globdir($dirname,$type=''

) else

foreach($dirinfo as

$v)

else}}

globdir(

'c:\users\ryan.zheng\desktop\2000

', '

xml');

獲取檔名和副檔名

string afirstname afile.substring afile.lastindexof 1,afile.lastindexof afile.lastindexof 1 檔名 string alastname afile.substring afile.lastindexof 1,af...

C 獲取檔名及副檔名

摘自 system.io.path.getextension 檔名 changeextension 更改路徑字串的副檔名。combine 合併兩個路徑字串。getdirectoryname 返回指定路徑字串的目錄資訊。getextension 返回指定的路徑字串的副檔名。getfilename 返回...

C 獲取檔名及副檔名

c 獲取檔名及副檔名 string afirstname afile.substring afile.lastindexof 1,afile.lastindexof afile.lastindexof 1 檔名 string alastname afile.substring afile.lasti...