Action View Helper in Zend - Work around?

后端 未结 4 2100
别跟我提以往
别跟我提以往 2020-12-16 18:49

I\'m working on building up an interface that I want to function as a \"tabbed browsing\" sort of function. Each of these tabs has already been written as an action and the

4条回答
  •  不思量自难忘°
    2020-12-16 19:22

    You can catch any access exceptions by using a try/catch block:

    try { // action throwing exceptions } catch (Exception $e) { // catch silently }
    

提交回复
热议问题