久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      怎么查詢php哪執(zhí)行得慢

      Xdebug作為PHP的代碼調(diào)試工具,提供了豐富的調(diào)試函數(shù),也可將其配置為zend studio、editplus、phpstorm等IDE的第三方調(diào)試插件。通過開啟Xdebug的自動(dòng)跟蹤(auto_trace)和分析器功能,更可以直觀察PHP源代碼的性能數(shù)據(jù),從而優(yōu)化PHP代碼。

      怎么查詢php哪執(zhí)行得慢

      安裝配置Xdebug(推薦學(xué)習(xí):web前端視頻教程)

      查看本機(jī)php版本

      $: php --version PHP 7.0.13-0ubuntu0.16.04.1 (cli) ( NTS ) Copyright (c) 1997-2016 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies     with Xdebug v2.5.5, Copyright (c) 2002-2017, by Derick Rethans     with Zend OPcache v7.0.13-0ubuntu0.16.04.1, Copyright (c) 1999-2016, by Zend Technologies

      安裝Xdebug擴(kuò)展

      去官網(wǎng)https://xdebug.org/download.php下載對(duì)應(yīng)版本的Xdebug。我的操作系統(tǒng)是ubuntu16.04,所以下載了source版本。Xdebug 2.6.0beta1下載鏈接

      cd xdebug-source-directory phpize #如果沒有,請(qǐng)先安裝Php7.0-dev包 which php-config  #查找php-config命令的位置 ./configure –with-php-config=/usr/bin/php-config make make install #可能需要加上sudo #安裝完了,要記一下xdebug.so的安裝位置,下面配置php.ini的時(shí)候需要

      配置php.ini

      [Xdebug] zend_extension="/usr/lib/php/20151012/xdebug.so"  xdebug.remote_enable=1 #與remote_connect_back不能同時(shí)開啟 xdebug.remote_host="localhost"  xdebug.remote_port=9001  #與remote_host不能同時(shí)開啟 ;xdebug.remote_connect_back = 1  xdebug.remote_handler="dbgp" xdebug.idekey=PHPSTORM

      解釋一下:

      zend_extension每個(gè)人安裝xdebug擴(kuò)展的位置可能不同,按實(shí)際情況填寫。

      remote_enable 必須設(shè)置為1

      remote_host和remote_port分別填localhost和9001。remote是指IDE端,并非瀏覽器端或者PHP服務(wù)端,注意理解清楚。

      remote_handler只能填dbpg,照填就行。

      idekey是用于進(jìn)行會(huì)話身份標(biāo)識(shí)的,需要與后面IDE端填的保持一致,這里填的是PHPSTORM。

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)