PHP實現擷取副檔名的方法

來源:互聯網
上載者:User
這篇文章主要介紹了PHP擷取副檔名的方法,結合執行個體形式總結了6種常用的副檔名擷取方法,代碼備有較為詳細的注釋便於理解,需要的朋友可以參考下

本文執行個體總結了PHP擷取副檔名的方法。分享給大家供大家參考,具體如下:

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

$file = '需要進行擷取副檔名的檔案.php';//第一種,根據.拆分,擷取最後一個元素的值function getExt1{return end(explode(".",$file);)}//第二種,擷取最後一個點的位置,截取function getExt2{return substr($file,strrpos($file,'.')+1);}//第三種,根據.拆分,擷取最後一個元素的值function getExt3($file) {return array_pop(explode('.',$file)); }//第四種,pathinfo function getExt5($file) {$arr = pathinfo($file);return $arr['extension'];//或者這樣return pathinfo($file,PATHINFO_EXTENSION);}//第五種,正則,子模式function getExt6$file){preg_match("/(gif | jpg | png)$/",$file,$match);$match=$match[0];} //第六種,正則反向引用function getExt7($file){$match=preg_replace("/.*\.(\w+)/" , "\\1" ,$file );echo $match;}

相關推薦:

PHP擷取檔案副檔名的常用方法

PHP擷取檔案副檔名的多種方法

如何利用php進行檔案副檔名判斷

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.