久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <bdo id='6S94R'></bdo><ul id='6S94R'></ul>

  • <legend id='6S94R'><style id='6S94R'><dir id='6S94R'><q id='6S94R'></q></dir></style></legend>
  • <i id='6S94R'><tr id='6S94R'><dt id='6S94R'><q id='6S94R'><span id='6S94R'><b id='6S94R'><form id='6S94R'><ins id='6S94R'></ins><ul id='6S94R'></ul><sub id='6S94R'></sub></form><legend id='6S94R'></legend><bdo id='6S94R'><pre id='6S94R'><center id='6S94R'></center></pre></bdo></b><th id='6S94R'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='6S94R'><tfoot id='6S94R'></tfoot><dl id='6S94R'><fieldset id='6S94R'></fieldset></dl></div>

    1. <tfoot id='6S94R'></tfoot>

      <small id='6S94R'></small><noframes id='6S94R'>

        使用 Zend 框架時(shí)顯示 php 錯(cuò)誤

        Display php errors when using Zend framework(使用 Zend 框架時(shí)顯示 php 錯(cuò)誤)
          <bdo id='XOCFH'></bdo><ul id='XOCFH'></ul>
          <legend id='XOCFH'><style id='XOCFH'><dir id='XOCFH'><q id='XOCFH'></q></dir></style></legend>

          <small id='XOCFH'></small><noframes id='XOCFH'>

            <tbody id='XOCFH'></tbody>
          <tfoot id='XOCFH'></tfoot>

                  <i id='XOCFH'><tr id='XOCFH'><dt id='XOCFH'><q id='XOCFH'><span id='XOCFH'><b id='XOCFH'><form id='XOCFH'><ins id='XOCFH'></ins><ul id='XOCFH'></ul><sub id='XOCFH'></sub></form><legend id='XOCFH'></legend><bdo id='XOCFH'><pre id='XOCFH'><center id='XOCFH'></center></pre></bdo></b><th id='XOCFH'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='XOCFH'><tfoot id='XOCFH'></tfoot><dl id='XOCFH'><fieldset id='XOCFH'></fieldset></dl></div>
                  本文介紹了使用 Zend 框架時(shí)顯示 php 錯(cuò)誤的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我一直在使用 Zend Framework 并且遇到這個(gè)問題有一段時(shí)間了,但現(xiàn)在它變得太煩人了,所以我將問題發(fā)送給您.

                  I've been using Zend Framework and just living with this problem for a while, but it's now just gotten too annoying so i'll send the question out to you.

                  Zend 可以識(shí)別 Zend 框架內(nèi)的某些問題(例如調(diào)用不存在的控制器),并將該問題發(fā)送到 ErrorController.我的工作正常.

                  There are certain problems within the Zend framework that Zend can recognize (such as calling a nonexistent controller), and will send that problem to the ErrorController. I've got that working fine.

                  似乎有一些問題,Zend Framework 會(huì)失敗并通過 php 顯示錯(cuò)誤,例如某個(gè)函數(shù)不存在或什么的.那些我可以看到并修復(fù)的.

                  There seem to be some problems that Zend Framework will fail and display the error through php, like if a certain function doesn't exist or something. Those I can see and fix.

                  雖然有時(shí) Zend 不會(huì)失敗,但它也只會(huì)發(fā)送一個(gè)空響應(yīng).我會(huì)得到一個(gè)空白頁.他們的布局沒有顯示,沒有代碼,沒有任何東西可以讓我知道出了什么問題.上次,有一個(gè) require() 失敗了.我不得不在沒有反饋的情況下手動(dòng)解決這個(gè)問題.

                  Sometimes though, Zend won't fail, but it will also just send out an empty response. I will get a blank page. They layout doesn't show up, there's no code, there's no nothing to give me an idea of what's gone wrong. Last time, there was a require() that failed. I had to manually figure this out with no feedback.

                  大家有沒有遇到過這種情況?您對(duì)如何顯示這些錯(cuò)誤有什么建議嗎?任何幫助將不勝感激!

                  Have any of you experienced this? Do you have any advice on how to get these errors to show? Any help would be appreciated!

                  推薦答案

                  框架的 MVC 組件的內(nèi)部錯(cuò)誤處理只能捕獲異常,不能捕獲 PHP 錯(cuò)誤.

                  The internal error handling of the framework's MVC components can only trap Exceptions, not PHP errors.

                  為了在開發(fā)過程中協(xié)助調(diào)試,可以使用標(biāo)準(zhǔn):

                  To assist in debugging during development, you can use the standard:

                  error_reporting(E_ALL|E_STRICT);
                  ini_set('display_errors', 'on');
                  

                  此外,如果您使用的是 1.8 附帶的新自動(dòng)加載器,請(qǐng)使用:

                  Also, if you're using the new Autoloader included with 1.8, use:

                  Zend_Loader_Autoloader::getInstance()->suppressNotFoundWarnings(false);
                  

                  允許發(fā)出失敗的包含/要求語句.

                  To allow failed include/require statements to be issued.

                  這篇關(guān)于使用 Zend 框架時(shí)顯示 php 錯(cuò)誤的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動(dòng)游標(biāo)不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術(shù)方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個(gè)值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅(qū)動(dòng)程序)
                  <i id='gA12m'><tr id='gA12m'><dt id='gA12m'><q id='gA12m'><span id='gA12m'><b id='gA12m'><form id='gA12m'><ins id='gA12m'></ins><ul id='gA12m'></ul><sub id='gA12m'></sub></form><legend id='gA12m'></legend><bdo id='gA12m'><pre id='gA12m'><center id='gA12m'></center></pre></bdo></b><th id='gA12m'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='gA12m'><tfoot id='gA12m'></tfoot><dl id='gA12m'><fieldset id='gA12m'></fieldset></dl></div>
                    <tbody id='gA12m'></tbody>

                      • <bdo id='gA12m'></bdo><ul id='gA12m'></ul>

                          <small id='gA12m'></small><noframes id='gA12m'>

                          • <tfoot id='gA12m'></tfoot>
                          • <legend id='gA12m'><style id='gA12m'><dir id='gA12m'><q id='gA12m'></q></dir></style></legend>
                            主站蜘蛛池模板: 91欧美精品成人综合在线观看 | 国产精品1区2区 | 97视频在线观看免费 | 夜夜爽99久久国产综合精品女不卡 | 欧美日韩在线电影 | 日韩国产高清在线观看 | www.久草.com | 黄色视频a级毛片 | 夜夜艹 | 全免费a级毛片免费看视频免费下 | 久久久123 | 亚洲成人一区二区 | 91麻豆精品国产91久久久更新资源速度超快 | 日本小视频网站 | 精品麻豆剧传媒av国产九九九 | 中文字幕日韩三级 | 九九导航 | wwwsihu| 久久爆操| 国产精品夜夜春夜夜爽久久电影 | 国产乱码精品一区二区三区忘忧草 | 国产成人精品一区二三区在线观看 | 精品国产一区二区三区久久狼黑人 | 欧美午夜一区二区三区免费大片 | 粉嫩粉嫩芽的虎白女18在线视频 | 亚洲成人一区 | 丝袜毛片 | 亚洲天堂999 | 国产精品美女一区二区 | 在线一级片 | 日本小电影网站 | 国产乱xxav | 一级毛片免费视频观看 | 久久久亚洲一区 | 国内精品视频一区二区三区 | jizz18国产 | 人人射人人 | 亚洲国产高清高潮精品美女 | 日韩一区二区视频 | 亚洲精品久久久一区二区三区 | 中文字幕视频在线 |