在PHP中,我們有時需要將URL轉換為有用的數組,以便我們可以從中獲取有關頁面的資訊。在本文中,我們將學習如何使用PHP函數將URL轉換為陣列。
將URL轉換為陣列需要使用PHP中的parse_url()函數和parse_str()函數。 Parse_url()函數將URL分解為多個部分,並且parse_str()函數會分解查詢字串並將其轉換為關聯數組。
首先,讓我們來看parse_url()函數的語法:
parse_url($url, $component);
在這個語法中,$url參數是要分解的URL,而$component參數是要傳回的URL元件。 $component參數是可選的,它可以是下面中的任何一個:
$url = "http://www.example.com/index.php?id=1&name=john#about"; $url_parts = parse_url($url); echo "<pre class="brush:php;toolbar:false">"; print_r($url_parts); echo "";
Array ( [scheme] => http [host] => www.example.com [path] => /index.php [query] => id=1&name=john [fragment] => about )
parse_str($query, $result);
$url = "http://www.example.com/index.php?id=1&name=john#about"; $url_parts = parse_url($url); parse_str($url_parts['query'], $query); echo "<pre class="brush:php;toolbar:false">"; print_r($query); echo "";
Array ( [id] => 1 [name] => john )
$url = "http://www.example.com/index.php?id=1&name=john#about"; $url_parts = parse_url($url); parse_str($url_parts['query'], $query); $result = array( 'scheme' => $url_parts['scheme'], 'host' => $url_parts['host'], 'port' => $url_parts['port'], 'user' => $url_parts['user'], 'pass' => $url_parts['pass'], 'path' => $url_parts['path'], 'query' => $url_parts['query'], 'fragment' => $url_parts['fragment'], 'query_array' => $query ); echo "<pre class="brush:php;toolbar:false">"; print_r($result); echo "";
Array ( [scheme] => http [host] => www.example.com [port] => [user] => [pass] => [path] => /index.php [query] => id=1&name=john [fragment] => about [query_array] => Array ( [id] => 1 [name] => john ) )
以上是php怎麼將URL轉換為陣列的詳細內容。更多資訊請關注PHP中文網其他相關文章!