久久久久久久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 框架時顯示 php 錯誤

        Display php errors when using Zend framework(使用 Zend 框架時顯示 php 錯誤)
          <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 框架時顯示 php 錯誤的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我一直在使用 Zend Framework 并且遇到這個問題有一段時間了,但現在它變得太煩人了,所以我將問題發送給您.

                  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 可以識別 Zend 框架內的某些問題(例如調用不存在的控制器),并將該問題發送到 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 會失敗并通過 php 顯示錯誤,例如某個函數不存在或什么的.那些我可以看到并修復的.

                  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.

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

                  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.

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

                  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 組件的內部錯誤處理只能捕獲異常,不能捕獲 PHP 錯誤.

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

                  為了在開發過程中協助調試,可以使用標準:

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

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

                  此外,如果您使用的是 1.8 附帶的新自動加載器,請使用:

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

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

                  允許發出失敗的包含/要求語句.

                  To allow failed include/require statements to be issued.

                  這篇關于使用 Zend 框架時顯示 php 錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅動程序)
                  <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>
                            主站蜘蛛池模板: 精品久久久久久亚洲精品 | 欧美日韩一二区 | 亚洲午夜视频在线观看 | 国产免费一区二区三区 | 亚洲精品毛片av | 亚洲国产精品成人无久久精品 | 亚洲欧美在线观看 | 欧美中文字幕一区二区三区亚洲 | 国产高清精品在线 | 久久精品国产久精国产 | 国产美女永久免费无遮挡 | 妞干网福利视频 | 精品久久一区二区 | 国产精品久久久久久久午夜片 | 国产精品一级 | 午夜性视频 | 久久精品国产99国产精品 | 亚洲一区二区在线视频 | 欧美另类视频在线 | www国产亚洲精品 | 欧美日韩国产一区二区三区 | 中文成人无字幕乱码精品 | av网站在线看 | 成人免费观看视频 | 天天爽天天操 | 欧美日韩亚洲二区 | 日本亚洲精品成人欧美一区 | 成人午夜看片 | 欧美性吧| 久色视频在线观看 | 欧美伊人久久久久久久久影院 | 依人成人 | 自拍偷拍精品 | 亚洲在线一区二区 | 国产精品一区二区三区四区 | 国产精品久久久久久久久久久久久 | 国产视频一二三区 | 正在播放国产精品 | 国产成人精品一区二三区在线观看 | 久热精品在线观看视频 | 成人一级毛片 |