0

我在我的一个视图index.phtml中使用此代码

        <?php echo $this->action('123', '456', null); ?>
        <?php echo $this->action('googlecalendar', 'widget', null); ?>
        <?php echo $this->action('blablabla', 'abc', null); ?>

现在,如果第二个动作在这一行抛出异常

$service = Zend_Gdata_ClientLogin::getHttpClient($email, $password, $service);

(我正在尝试/捕获)

const MANCA_DATI_AUTENTICAZIONE = 1;
const ERRORE_DURANTE_COLLEGAMENTO = 2;
const CAPTCHA_REQUIRED = 3;
try {
                    $service = Zend_Gdata_ClientLogin::getHttpClient($email, $password, $service);

                }
                catch(Zend_Gdata_App_HttpException $e)
                {

                    return self::ERRORE_DURANTE_COLLEGAMENTO;
                }
                catch(Zend_Gdata_App_AuthException $e)
                {

                    return self::MANCA_DATI_AUTENTICAZIONE;
                }
                catch(Zend_Gdata_App_CaptchaRequiredException $e)
                {

                    return self::CAPTCHA_REQUIRED;
                }
...

该文件的整个输出都在<html xmlns="http://www.w3.org/1999/xhtml">标记之前。

这是我的layout.php

<?php

$content_layout = $this->layout()->content;
...
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
...<?php echo $content_layout?>

我目前正在使用最新的 Zend (1.1.11)。如果该行没有发生异常,则一切正常。我尝试调试 zend 库但找不到解决方案

4

0 回答 0