2014-04-01 28 views

回答

0

我不知道我的理解。
但在你的榜樣,它之前' DOC_ID'

echo $this->url (array ('action' => 'documentshow', 'folder_id' => $fid, 'doc_id '=> $ doc_id), null, true); 

沒有報價,否則你可以試試這個:

$helperUrl = new Zend_View_Helper_Url(); 
$url = "http://" . $_SERVER['HTTP_HOST'] 
       . $helperUrl->url(array('action'  => 'documentshow', 
             'controller' => 'your_controller', 
             'folder_id' => $fid, 
             'doc_id'  => $doc_id 
            )); 

我希望它會幫助你:)

+0

耶我得到了它的完美解決方案... – nav

+0

爲你而高興。祝你好運 – doydoy44

相關問題