php獲取檔名字尾常用方法小結

2022-10-03 13:09:14 字數 608 閱讀 5902

//第一種方法

$pics = explo程式設計客棧de('.',$pic);

$num = count($pics);

ech $pics[程式設計客棧$num-1]."

";//第二種方法

echo end($pics)."< />";

//end()方法,獲取陣列最後乙個單元值

//第三種方法

$info = pathinfo($pic);

echo $info['extension']."

";//第四種www.cppcns.com方法

echo pathinfo($pic,pathinfo_extension)."

";//第五種方法

$offset = strrpos($pic,'.');

//計算指定字串在目標字串中最後一次出現的位置

echo substr($pic,$offset+1);

?>

本文標題: php獲取檔名字尾常用方法小結

本文位址:

如何用php獲取檔名字尾

php獲取檔案字尾名 format file 方法一 複製 如下 function extend 1 file name 方法二 複製 如下 function extend 2 file name 方法三 複製 如下 function extend 3 file name 方法四 複製 如下 fun...

Shell 獲取檔名和字尾名

file thisfile.txt echo filename echo extension 輸出 filename thisfile extension txt 附 基於pattern matching的子串替換 替換第乙個。替換所有。注意 不能使用正規表示式,只能使用?的shell擴充套件。只能...

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...