획득 방법: 1. "substr(strrchr($url,"."),1)" 문을 사용합니다. 2. "substr($url,strrpos($url,'.')+1)"을 사용합니다. 3. "pathinfo($url,PATHINFO_EXTENSION)"를 사용하십시오.
이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
URL 확장자를 가져오는 PHP 방법
방법 1:
<?php $url="http://localhost/user/order.php"; function get_ext1($url){ return substr(strrchr($url,"."),1); } echo get_ext1($url); ?>
방법 2:
<?php $url="http://localhost/user/order.php"; function get_ext2($url){ $p=pathinfo($url);//Array ( [dirname] => http://localhost/user [basename] => order.php [extension] => php [filename] => order ) return $p['extension']; } echo get_ext2($url); ?>
방법 3:
<?php $url="http://localhost/user/order.php"; function get_ext3($url){ return substr($url,strrpos($url,'.')+1); } echo get_ext3($url); ?>
방법 4:
<?php $url="http://localhost/user/order.php"; function get_ext4($url){ $arr=explode('.',$url); return array_pop($arr); } echo get_ext4($url); ?>
방법 5:
<?php $url="http://localhost/user/order.php"; function get_ext5($url){ return pathinfo($url,PATHINFO_EXTENSION); } echo get_ext5($url); ?>
권장 학습: "PHP 비디오 튜토리얼 "
위 내용은 PHP에서 URL 확장자를 얻는 여러 가지 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!