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

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

    <bdo id='vpIQL'></bdo><ul id='vpIQL'></ul>
<tfoot id='vpIQL'></tfoot>

  1. <legend id='vpIQL'><style id='vpIQL'><dir id='vpIQL'><q id='vpIQL'></q></dir></style></legend>
    1. <i id='vpIQL'><tr id='vpIQL'><dt id='vpIQL'><q id='vpIQL'><span id='vpIQL'><b id='vpIQL'><form id='vpIQL'><ins id='vpIQL'></ins><ul id='vpIQL'></ul><sub id='vpIQL'></sub></form><legend id='vpIQL'></legend><bdo id='vpIQL'><pre id='vpIQL'><center id='vpIQL'></center></pre></bdo></b><th id='vpIQL'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='vpIQL'><tfoot id='vpIQL'></tfoot><dl id='vpIQL'><fieldset id='vpIQL'></fieldset></dl></div>
    2. Xdebug 成功連接到 DBGP 客戶端,但不會在斷點處停

      Xdebug successfully connects to DBGP clients, but won#39;t stop at breakpoints(Xdebug 成功連接到 DBGP 客戶端,但不會在斷點處停止)

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

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

          <tbody id='l3x1f'></tbody>
          <bdo id='l3x1f'></bdo><ul id='l3x1f'></ul>

        • <tfoot id='l3x1f'></tfoot>
                <legend id='l3x1f'><style id='l3x1f'><dir id='l3x1f'><q id='l3x1f'></q></dir></style></legend>
              1. 本文介紹了Xdebug 成功連接到 DBGP 客戶端,但不會在斷點處停止的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我安裝了 Xdebug 2.1,并運行 PHP 5.2.13.它可以成功連接到多個 DBGP 客戶端(即 xdebug.remote_log 顯示來回通信,客戶端本身也顯示傳入連接),但它不會在斷點處停止.我試過 NetBeans、MacGDBp 以及命令行debugclient 與 Xdebug 捆綁在一起.

                I have Xdebug 2.1 installed, and running with PHP 5.2.13. It can successfully connect to multiple DBGP clients (i.e. the xdebug.remote_log shows communication back and forth, and the clients themselves also show the incoming connection), but it doesn't stop at breakpoints. I have tried NetBeans, MacGDBp and also the command-line debugclient bundled with Xdebug.

                一個典型的交換看起來像:

                A typical exchange looks like:

                Log opened at 2010-07-20 09:33:17
                -> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" fileuri="file:///mnt/hgfs/htdocs/mycompany/index.php" language="PHP" protocol_version="1.0" appid="14371" idekey="macgdbp"><engine version="2.1.0"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2010 by Derick Rethans]]></copyright></init>
                
                <- status -i macgdbp
                -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="status" transaction_id="macgdbp" status="starting" reason="ok"></response>
                
                <- step_into -i macgdbp
                -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="macgdbp" status="stopping" reason="ok"></response>
                
                <- status -i macgdbp
                -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="status" transaction_id="macgdbp" status="stopping" reason="ok"></response>
                
                Log closed at 2010-07-20 09:33:18
                

                NetBeans 嘗試設置斷點,Xdebug 確認這些斷點:

                NetBeans attempts to set breakpoints, and these are acknowledged by Xdebug:

                <- breakpoint_set -i 7 -t line -s enabled -f file:///mnt/hgfs/htdocs/mycompany/index.php -n 9
                -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="7" state="enabled" id="139360004"></response>
                

                然而,Xdebug 還是不肯罷休!

                However, Xdebug still refuses to stop!

                推薦答案

                如果您將 Xdebug 作為 extension 加載(即 extension=xdebug.so) 在 PHP 配置中而不是 zend_extension(即 zend_extension=/usr/lib/php5/20060613+lfs/xdebug.so).

                This appears to happen if you have have Xdebug loaded as an extension (i.e. extension=xdebug.so) in the PHP config instead of a zend_extension (i.e. zend_extension=/usr/lib/php5/20060613+lfs/xdebug.so).

                確保您的 PHP 配置中沒有 extension=xdebug.so任何地方,即使您是非常確定您正在使用 zend_extension.例如,如果您在 /etc/php5/conf.d/xdebug.ini 中有 zend_extension,這很可能會被 extension 取代在 /etc/php5/apache2/php.ini 中.如果是這種情況,什么都不會抱怨,phpinfo() 會盡職盡責地報告 Xdebug 已加載!(Xdebug 2.1 在作為擴展加載時確實會在 phpinfo() 中發出一個小警告,但以前的版本什么也不做.)

                Make sure that you don't have an extension=xdebug.so line anywhere in your PHP config, even if you're pretty sure you're using zend_extension. For example, if you have zend_extension in /etc/php5/conf.d/xdebug.ini, this may well be superseded by an extension in /etc/php5/apache2/php.ini. If this is the case, nothing will complain, and phpinfo() will dutifully report that Xdebug is loaded! (Xdebug 2.1 does issue a small warning in phpinfo() when loaded as an extension, but previous versions do nothing.)

                這篇關于Xdebug 成功連接到 DBGP 客戶端,但不會在斷點處停止的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                相關文檔推薦

                MySQLi prepared statement amp; foreach loop(MySQLi準備好的語句amp;foreach 循環)
                Is mysqli_insert_id() gets record from whole server or from same user?(mysqli_insert_id() 是從整個服務器還是從同一用戶獲取記錄?)
                PHP MySQLi doesn#39;t recognize login info(PHP MySQLi 無法識別登錄信息)
                mysqli_select_db() expects exactly 2 parameters(mysqli_select_db() 需要 2 個參數)
                Php mysql pdo query: fill up variable with query result(Php mysql pdo 查詢:用查詢結果填充變量)
                MySQLI 28000/1045 Access denied for user #39;root#39;@#39;localhost#39;(MySQLI 28000/1045 用戶“root@“localhost的訪問被拒絕)

                  <tbody id='f44uB'></tbody>
              2. <i id='f44uB'><tr id='f44uB'><dt id='f44uB'><q id='f44uB'><span id='f44uB'><b id='f44uB'><form id='f44uB'><ins id='f44uB'></ins><ul id='f44uB'></ul><sub id='f44uB'></sub></form><legend id='f44uB'></legend><bdo id='f44uB'><pre id='f44uB'><center id='f44uB'></center></pre></bdo></b><th id='f44uB'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='f44uB'><tfoot id='f44uB'></tfoot><dl id='f44uB'><fieldset id='f44uB'></fieldset></dl></div>
                    <tfoot id='f44uB'></tfoot>

                      <legend id='f44uB'><style id='f44uB'><dir id='f44uB'><q id='f44uB'></q></dir></style></legend>

                        <bdo id='f44uB'></bdo><ul id='f44uB'></ul>

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

                        • 主站蜘蛛池模板: 国产日韩精品在线 | 精品视频一区二区 | 亚洲国产成人在线视频 | 看片网站在线 | 亚洲欧美日韩网站 | 久久欧美高清二区三区 | 中文字幕精品视频 | 日韩电影一区 | 人人艹人人 | 国产精品一区二区不卡 | 国产精品久久一区二区三区 | 国产成人精品免费视频大全最热 | 国产专区在线 | 欧美性猛片aaaaaaa做受 | 国产一区二区三区免费视频 | 九九精品在线 | 国产精品久久久久久久久久久免费看 | 狠狠夜夜 | 日韩一区二区av | 欧美日韩免费视频 | 亚洲视频免费一区 | 不卡av电影在线播放 | 欧美日韩一区二区三区在线观看 | 亚洲一区在线观看视频 | 999www视频免费观看 | 北条麻妃99精品青青久久 | aaaa网站 | 久久久久国产视频 | 亚洲一区二区在线视频 | 二区三区视频 | 亚洲激情在线 | 国产精品综合 | 黄色毛片在线看 | 国产精品一区久久久 | www.伊人.com | 日韩在线观看视频一区 | 日韩精品一区二区三区老鸭窝 | 草草视频在线观看 | 国产999精品久久久 日本视频一区二区三区 | 在线一区 | 91免费在线|