方法一:strrpos — 計算指定字串在目標字串中最後一次出現的位置,
substr — 返回字串的子串
function
get_ext1
($file
)方法二:strrchr — 查詢指定字元在字串中的最後一次出現
function
get_ext2
($file
)方法三:pathinfo — 返回檔案路徑的資訊
function
get_ext3
($file
)方法四:array_pop — 彈出陣列最後乙個單元(出棧)
function
get_ext4
($file
)方法五:strrev — 反轉字串
function
get_ext5
($file
)
PHP 獲取檔案字尾名
1.file x.y.z.png echo substr strrchr file,1 解析 strrchr file,strrchr 函式查詢字串在另乙個字串中最後一次出現的位置,並返回從該位置到字串結尾的所有字元 2.file x.y.z.png echo substr file,strrpos...
php獲取檔案字尾名
php獲取檔案字尾名 format file php 方法一 function extend 1 file name 方法二 php function extend 2 file name 方法三 php function extend 3 file name 方法四 php function ge...
PHP獲取檔案字尾名
1.file x.y.z.png echo substr strrchr file,1 解析 strrchr file,strrchr 函式查詢字串在另乙個字串中最後一次出現的位置,並返回從該位置到字串結尾的所有字元 2.file x.y.z.png echo substr file,strrpos...