PHP獲取副檔名的方法例項總結

2022-09-26 20:00:17 字數 416 閱讀 3215

在php面試中或者考試中會有很大機率碰到寫出五種獲取副檔名的方法,下面是我自己總結的一些方法

$file = '需要進行獲取副檔名的檔案.php';

//第一種,根據.拆分,獲取最後乙個元素的值

function getext1

//第二種,獲取最後乙個點的位置,擷取

function getext2

//第三種,根據.拆分,獲取最後乙個元素的值

fu程式設計客棧nction getext3($file)

//第四種,pathin

function getext5($file)

//第五種,正則,子模式

function getext6$file)

//第六種,正則反向引用

function getext7($file)

PHP獲取副檔名的方法

php獲取副檔名的方法 上傳成功示例 array 5 ext substr strrchr upfile name 1 var dump ext 結果 string 4 docx ext substr upfile name strrpos upfile name 1 var dump ext 結果...

php獲取副檔名

第一種 123 4567 891011 1213 1415 獲取副檔名 substr strrchr name.txt 1 function fileextension fstr file extension fileextension abc def.g 123 print r file exte...

PHP獲取副檔名

第一種 tok strtok string,使用strtok將字串分割成乙個個令牌 while tok count count arr i count 1 file type arr i 第二種 arr explode string 使用explode 函式分割字串,返回值是乙個陣列 count c...