我想知道这两个 Zend 重定向器函数之间的区别。显然,当我调用gotoUrl
它时,将我重定向到新页面,其余代码将不会像
... Some Code // This will execute
$redirector->gotoUrl('bamboo/jamboo') ; // Page will redirect to jamboo and reset of code will not execute.
... Some Code // This will not execute as we already redirect to new page.
为什么重定向后退出?这有什么意义?任何想法?