주로 다음 전역 변수를 사용하여 현재 URL 주소와 서버 변수를 얻기 위한 PHP 프로그래밍 프로그래밍: $_server["query_string"],$_server["request_uri"],$_server["script_name"],$_server["php_self"] 1,$_server["query_string"] 설명: 쿼리 문자열 2.$_server["request_uri"] 설명: 이 페이지에 액세스하려면 URI가 필요합니다. 3.$_server["스크립트_이름"] 설명: 현재 스크립트의 경로가 포함되어 있습니다. 4.$_서버["php_self"] 설명: 현재 실행 중인 스크립트의 파일 이름 예: 1. http://bbs.it-home.org/ (홈페이지 바로 열기) 결과: $_server["query_string"] = "" $_server["request_uri"] = "/" $_server["script_name"] = "/index.php" $_server["php_self"] = "/index.php" 2. http://bbs.it-home.org/?p=222 (쿼리 포함) 결과: $_server["query_string"] = "p=222" $_server["request_uri"] = "/?p=222" $_server["script_name"] = "/index.php" $_server["php_self"] = "/index.php" 3. http://bbs.it-home.org/index.php?p=222&q=biuuu 결과:
예 2:
이러한 변수 또는 함수의 유사점과 차이점. 요청 주소가 있다고 가정합니다: http://localhost:8080/test.php/age=20 test.php의 전체 경로는 다음과 같습니다: d:/server/www/example/test.php 1), getcwd() 브라우저에서 요청한 페이지 파일이 있는 디렉터리, 즉 test.php 파일이 있는 디렉터리를 가져옵니다: d:/server/www/example/, inculde("test_dir/test2.php")와 같이 require 또는 include 문이 test.php에서 실행되는 경우, 그런 다음 test2.php의 getcwd() 함수는 test.php가 있는 디렉토리도 반환합니다. 2)、__파일__ __file__ 변수가 있는 파일의 전체 경로를 가져오는 데 사용할 수 있는 매직 변수입니다. 예를 들어 test.php의 __file__은 d:/server/www/example/test.php를 가져옵니다. test_dir/test2.php의 __file__은 d:/server/www/example/test_dir/test2.php를 가져옵니다. 3), $_server["script_filename"] 브라우저에서 요청한 페이지 파일의 전체 경로를 가져옵니다. test.php 및 test_dir/test2.php에서 $_server["script_name"]을 사용하면 d:/server/www/example/test.php가 생성됩니다. 4), $_server["스크립트_이름"] 브라우저에서 요청한 페이지 파일의 파일 이름을 가져옵니다. 참고: $_server["script_name"]과 달리 이 변수는 파일 이름만 가져오고 경로는 포함하지 않습니다. test.php 및 test_dir/test2.php에서 $_server["script_name"]을 사용하면 test.php가 생성됩니다. 물론 test.php와 test_dir/test2.php에서 basename($_server["script_filename"])을 실행하는 것은 $_server["script_name"]과 같습니다. test.php와 test_dir/test2.php에서 realpath("test.php")를 실행하면 결과는 $_server["script_filename"]과 같습니다. 5), $_server["php_self"] 브라우저가 요청한 페이지의 파일 이름을 가져오고 물음표 ? 뒤의 내용은 제거됩니다. 참고: 경로는 포함되지 않습니다. 예를 들어 클라이언트에서 http://localhost:8080/test.php?age=20&name=tom을 요청합니다. 그러면 test.php와 test_dir/test2.php의 $_server["php_self"]는 "test.php"를 얻게 됩니다. "age=20&name=tom"이 제거되었습니다. 그리고 클라이언트가 http://localhost:8080/test.php/age=20&name=tom을 요청하면, 그러면 test.php와 test_dir/test2.php의 $_server["php_self"]는 "test.php/age=20&name=tom"을 얻게 됩니다. 6), $_server["request_uri"] 브라우저가 요청한 페이지의 파일 이름과 파일 이름 뒤의 모든 내용을 가져옵니다(참고: 파운드 기호 # 뒤의 내용은 생략됨). 예를 들어 클라이언트에서 http://localhost:8080/test.php?age=20&name=tom을 요청합니다. 그러면 test.php와 test_dir/test2.php의 $_server["reuest_uri"]는 "test.php"를 얻게 됩니다. "age=20&name=tom"이 벗겨졌습니다. 그리고 클라이언트가 http://localhost:8080/test.php/age=20&name=tom을 요청하면, 그러면 test.php와 test_dir/test2.php의 $_server["request_uri"]는 "test.php/age=20&name=tom"을 얻게 됩니다. 테스트.php:
|