使用http_build_query()
將陣列編碼爲URL時,當數組鍵也是html-char代碼時會產生奇怪的行爲。使用http_build_query()編碼陣列鍵時
例如:
return http_build_query([
'id' = > ['my', 'data', 'here'], // no problem
'class' = > ['my', 'data', 'here'], // no problem
'yen' = > ['my', 'data', 'here'], // ¥ html car is ¥
'parameter' = > ['my', 'data', 'here'], // ¶ html char is ¶
]);
和編碼的結果是:
id[0]=my&id[1]=data&id[2]=here&class[0]=my&class[1]=data&class[2]=here¥[0]=my¥[1]=data¥[2]=here¶meter[0]=my¶meter[1]=data¶meter[2]=here
最新這裏發生,它不能是可能的,我不能使用字參數爲一個數組項。
了你在你的瀏覽器中看到,檢查出的'視圖source' – Ghost
我不明白你怎麼代碼可能產生這樣的輸出。請發佈**實際的代碼** – Phil
是啊...鬼是正確的。我覺得很傻... – AndrewMcLagan