2010-06-11 79 views
0

我需要字符串轉換是這樣的:網址爲http請求對象

$url = 'module/controller/action/param1/param1value/paramX/paramXvalue'; 

到URL關於當前路由器(包括翻譯等)。

通常我使用url視圖助手生成目標網址,但爲此我需要指定所有參數,所以我需要手動分解字符串。我試圖使用請求對象,像這樣:

$request = new Zend_Controller_Request_Http(); 
// some code here passing the $url 

Zend_Debug::dump($request->getControllerName()); // null instead of 'controllers' 
Zend_Debug::dump($request->getParams());   // null instead of array 

但這似乎是懷疑。我需要派遣這個請求嗎?

如何處理好這種情況?

+0

你好,你有空嗎?如果是這樣,我怎麼能找到你? (在您的回覆後將刪除此評論) – 2011-11-26 09:51:14

回答

0

我在這個任務中沒有在ZF中找到任何類。

我只是爆炸了字符串,這也沒關係。