이 글에서는 주로 PHP 함수 pathinfo()
, parse_url()
, basename()
를 사용하여 URL을 파싱하는 예제 코드를 소개합니다. 아래에서는 자세히 설명하지 않겠습니다. 코드를 직접 살펴보겠습니다.
예제 코드는 다음과 같습니다.
1. pathinfo를 사용하여 URL을 구문 분석합니다
<? $test = pathinfo("http://localhost/index.php"); print_r($test); ?>
결과는 다음과 같습니다
Array ( [dirname] => http://localhost //url的路径 [basename] => index.php //完整文件名 [extension] => php //文件名后缀 [filename] => index //文件名 )
2.parse_url() 함수를 사용하여
을 구문 분석합니다.<? $test = parse_url("http://localhost/index.php?name=tank&sex=1#top"); print_r($test); ?>
결과는 다음과 같습니다
Array ( [scheme] => http //使用什么协议 [host] => localhost //主机名 [path] => /index.php //路径 [query] => name=tank&sex=1 // 所传的参数 [fragment] => top //后面根的锚点 )
3. basename()을 사용하여 구문 분석
<? $test = basename("http://localhost/index.php?name=tank&sex=1#top"); echo $test; ?>
결과는 다음과 같습니다
index.php?name=tank&sex=1#top
요약
이상은 이 글의 전체 내용입니다. 모든 분들의 공부나 업무에 조금이나마 도움이 되었으면 좋겠습니다. 궁금한 점이 있으시면 메시지를 남겨주세요.