update : 2015.11.03
php.shukuma.com

검색:
 
 
예약 상수

예약 상수

이 확장은 다음의 상수들을 정의합니다. 이 확장을 PHP에 내장했거나, 실행시에 동적으로 읽어들일 경우에만 사용할 수 있습니다.

The following constants are meant to be used with parse_url() and are available since PHP 5.1.2.

PHP_URL_SCHEME (integer)
PHP_URL_HOST (integer)
Outputs the hostname of the URL parsed.
PHP_URL_PORT (integer)
Outputs the port of the URL parsed.
PHP_URL_USER (integer)
Outputs the user of the URL parsed.
PHP_URL_PASS (integer)
Outputs the password of the URL parsed.
PHP_URL_PATH (integer)
Outputs the path of the URL parsed.
PHP_URL_QUERY (integer)
Outputs the query string of the URL parsed.
PHP_URL_FRAGMENT (integer)
Outputs the fragment (string after the hashmark #) of the URL parsed.

The following constants are meant to be used with http_build_query().

PHP_QUERY_RFC1738 (integer)
Encoding is performed per » RFC 1738 and the application/x-www-form-urlencoded media type, which implies that spaces are encoded as plus (+) signs.
PHP_QUERY_RFC3986 (integer)
Encoding is performed according to » RFC 3986, and spaces will be percent encoded (%20).