PHP中獲取文件擴展名的方法
創(chuàng)新互聯(lián)公司網(wǎng)絡公司擁有十余年的成都網(wǎng)站開發(fā)建設經(jīng)驗,上千多家客戶的共同信賴。提供做網(wǎng)站、成都網(wǎng)站制作、網(wǎng)站開發(fā)、網(wǎng)站定制、友情鏈接、建網(wǎng)站、網(wǎng)站搭建、成都響應式網(wǎng)站建設公司、網(wǎng)頁設計師打造企業(yè)風格,提供周到的售前咨詢和貼心的售后服務
第一種:
$file = 'x.y.z.png'; echo substr(strrchr($file, '.'), 1);
解析:strrchr($file, '.')
strrchr() 函數(shù)查找字符串在另一個字符串中最后一次出現(xiàn)的位置,并返回從該位置到字符串結尾的所有字符
第二種:
$file = 'x.y.z.png'; echo substr($file, strrpos($file, '.')+1);
解析:strrpos($file, '.')
查找 "." 在字符串中最后一次出現(xiàn)的位置,返回位置 substr()從該位置開始截取
第三種:
$file = 'x.y.z.png'; $arr = explode('.', $file); echo $arr[count($arr)-1];
第四種:
$file = 'x.y.z.png'; $arr = explode('.', $file); echo end($arr); //end()返回數(shù)組的最后一個元素
第五種:
$file = 'x.y.z.png'; echo strrev(explode('.', strrev($file))[0]);
第六種:
.$file = 'x.y.z.png'; echo pathinfo($file)['extension'];
解析:pathinfo() 函數(shù)以數(shù)組的形式返回文件路徑的信息。
包括以下的數(shù)組元素:
[dirname] [basename] [extension]
第七種:
.$file = 'x.y.z.png'; echo pathinfo($file, PATHINFO_EXTENSION)
以上就是PHP獲取文件擴展名的7中方法的詳細內(nèi)容,更多請關注創(chuàng)新互聯(lián)其它相關文章!