php取檔案字尾名(副檔名)

2021-06-28 07:30:35 字數 855 閱讀 7233

首先,介紹兩個函式:

1、substr(string,start,length):從string的start處開始,返回length長度的字串

string:必需,規定處理的是哪個字串

start:必需,規定開始的位置(正數:從字串指定位置開始;負數:從字串結尾處開始;0:在字串第乙個位置處開始。)

length:可選,規定要處理的長度;若不選,則預設處理到字串最後。(正數:從start指定位置處開始;負數:從字串末端開始。)

2、strrchr(string,char):查詢字串char在string中最後一次出現的位置,並返回從該位置帶字串結尾的所有字元。成功:返回字串;失敗:返回false

string:必需,規定被搜尋的字串

char:必需,規定要查詢的字元(串)。如果該引數是數字,則搜尋匹配數字 ascii 值的字元。

兩個函式配合使用,就可以取到檔案的字尾名了。 如:

//結果為:".jpg"

//結果為:"jpg"

strtolower():  

//轉換為小寫

如此,就取到$type="jpg";

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