如何通過php來使用http_build_query,parse_url,parse_str建立與解析url

來源:互聯網
上載者:User

1.http_build_query

http_build_query 可以建立urlencode之後的請求字串。

string http_build_query ( mixed $query_data [, string $numeric_prefix [, string $arg_separator [, int $enc_type = PHP_QUERY_RFC1738 ]]] )

參數:
query_data
可以是數組或包含屬性的對象。

一個query_data數組可以是簡單的一維結構,也可以是由數組組成的數組(其依次可以包含其它數組)。

如果query_data是一個對象,只有public屬性才會加入結果。

numeric_prefix
如果在基礎數組中使用了數字下標同時給出了該參數,此參數值將會作為基礎數組中的數字下標元素的首碼。

這是為了讓 PHP 或其它 CGI 程式在稍後對資料進行解碼時擷取合法的變數名。

arg_separator
除非指定並使用了這個參數,否則會用 arg_separator.output來分隔參數(php.ini中有此參數,預設是”&”)。

enc_type
預設使用 PHP_QUERY_RFC1738。

如果 enc_type 是 PHP_QUERY_RFC1738,則編碼將會以 » RFC 1738 標準和 application/x-www-form-urlencoded 媒體類型進行編碼,空格會被編碼成加號(+)。

如果 enc_type 是 PHP_QUERY_RFC3986,將根據 » RFC 3986 編碼,空格會被百分比符號編碼(%20)。
例子1:只使用query_data參數

<?php$data = array(    'name' => 'fdipzone',    'gender' => 'male',    'profession' => 'programmer',    'explain' => 'a new programmer');echo http_build_query($data);?>

輸出:
name=fdipzone&gender=male&profession=programmer&explain=a+new+programmer


例子2: query_data使用一維下標數組,指定
numeric_prefix=info_,arg_separator=#,enc_type=PHP_QUERY_RFC3986

<?php$data = array('fdipzone','male','programmer','a new programmer');echo http_build_query($data, 'info_', '#', PHP_QUERY_RFC3986);?>

輸出:

info_0=fdipzone#info_1=male#info_2=programmer#info_3=a%20new%20programmer

2.parse_url

parse_url 解析url,返回其組成部分

mixed parse_url ( string $url [, int $component = -1 ] )

參數:
url
要解析的url,無效字元將使用_來替換

component
PHP_URL_PATH、 PHP_URL_QUERY 或 PHP_URL_FRAGMENT 的其中一個來擷取 URL 中指定的部分的 string。 (除了指定為 PHP_URL_PORT 後,將返回一個 integer 的值)。

傳回值:
對嚴重不合格的 URL,parse_url() 可能會返回 FALSE。

返回的資料一般包含以下幾種
scheme(如http),host,port,user,pass,path,query(在問號?之後),fragment(在散列符號#之後)
例子:

<?php$url = 'http://fdipzone:123456@www.fdipzone.com:80/test/index.php?id=1#tag';print_r(parse_url($url));echo parse_url($url, PHP_URL_SCHEME).PHP_EOL;echo parse_url($url, PHP_URL_HOST).PHP_EOL;echo parse_url($url, PHP_URL_PORT).PHP_EOL;echo parse_url($url, PHP_URL_USER).PHP_EOL;echo parse_url($url, PHP_URL_PASS).PHP_EOL;echo parse_url($url, PHP_URL_PATH).PHP_EOL;echo parse_url($url, PHP_URL_QUERY).PHP_EOL;echo parse_url($url, PHP_URL_FRAGMENT).PHP_EOL;?>

輸出:

Array(    [scheme] => http    [host] => www.fdipzone.com    [port] => 80    [user] => fdipzone    [pass] => 123456    [path] => /test/index.php    [query] => id=1    [fragment] => tag)httpwww.fdipzone.com80fdipzone123456/test/index.phpid=1tag

3.parse_str

parse_str 將字串解析成多個變數

void parse_str ( string $str [, array &$arr ] )

如果 str 是 URL 傳遞入的查詢字串(query string),則將它解析為變數並設定到當前範圍。
參數:
str
輸入的字串

arr
如果設定了第二個變數arr,變數將會以數組元素的形式存入到這個數組,作為替代。
例子1:解析到當前範圍

<?php$str = 'name=fdipzone&gender=male&profession=programer&explain=a new programmer';parse_str($str);echo $name.PHP_EOL;echo $gender.PHP_EOL;echo $profession.PHP_EOL;echo $explain.PHP_EOL;?>

輸出:

fdipzonemaleprogramera new programmer


例子2:結果儲存到arr數組

<?php$str = 'name=fdipzone&gender=male&profession=programer&explain=a new programmer';parse_str($str, $arr);print_r($arr);?>

輸出:

Array(    [name] => fdipzone    [gender] => male    [profession] => programer    [explain] => a new programmer)

4.擷取url的query參數並解析

首先使用parse_url擷取query,然後在使用parse_str解析參數

<?php$url = 'http://www.fdipzone.com/test/index.php?name=fdipzone&gender=male&profession=programmer&explain=a new programmer';$query = parse_url($url, PHP_URL_QUERY);parse_str($query, $data);print_r($data);?>

輸出:

Array(    [name] => fdipzone    [gender] => male    [profession] => programmer    [explain] => a new programmer)

本篇文章講解了如何通過php來使用http_build_query,parse_url,parse_str建立與解析url,更多相關內容請關注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.