我需要以下結構的陣列:需要使用URL來填充在php數組作爲鍵
Array
(
[www.example.com] => Array
(
[0] => http://www.example.com/
[1] => http://www.example.com/something.html
[2] => http://www.example.com/anything.html
)
[www.beispiel.com] => Array
(
[0] => http://www.beispiel.com/product-services/
[1] => http://www.beispiel.com/non-disclosure-agreement/
)
)
作爲輸入數組我有以下兩種
Array ([0] => http://www.example.com/
[1] => http://www.example.com/something.html
[2] => http://www.example.com/anything.html
[3] => http://www.beispiel.com/product-services/
[4] => http://www.beispiel.com/non-disclosure-agreement/
)
和
Array ([0] => www.example.com [1] => www.beispiel.com)
此刻我有這樣的事情:
Array
(
[0] => Array
(
[www.example.com] => http://www.example.com/
)
[1] => Array
(
[www.example.com] => http://www.example.com/something.html
)
[2] => Array
(
[www.example.com] => http://www.example.com/anything.html
)
[3] => Array
(
[www.beispiel.com] => http://www.beispiel.com/product-services/
)
[4] => Array
(
[www.beispiel.com] => http://www.beispiel.com/non-disclosure-agreement/
)
)
是可能的還是我錯過關於PHP的一些信息(例如鍵不能是解析的URL(主機))?
是的,這是可能的。但你必須嘗試一些。 –
這聽起來像你問如何從URL中獲取主機名。看看PHP中的'parse_url'函數。 –
我知道這一點;-) – theode