1
我正在使用yaf php框架php mvc更改默認url模式
我想獲得參數數組。 例如:
我的網址:... mvcSample/SVC/saveUser/USER1 /通行證/ A @ BC /喬/富
我的輸出PARAMS轉儲:
array (size=3)
'user1' => string 'pass' (length=4)
'[email protected]' => string 'joe' (length=3)
'foo' => null
我想:
array (size=5)
1 =>string 'user1'
2 => string 'pass'
3 => string '[email protected]'
4 => string 'joe'
5 =>string 'foo'
如何更改默認的網址格式?
謝謝
'a @ bc'不是有效的網址。這會拋出各種錯誤。 你至少應該使用'a%40b.c' – Tschallacka 2013-02-26 08:43:28