91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

macOS PHP7怎么增加Xdebug

發布時間:2021-12-21 17:04:25 來源:億速云 閱讀:122 作者:iii 欄目:編程語言

本篇內容主要講解“macOS PHP7怎么增加Xdebug”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“macOS PHP7怎么增加Xdebug”吧!

macOS系統PHP7增加Xdebug

Apple在發布macOS High Sierra后,系統也終于自帶了php v7.1,相比于之前,如果想使用php7,還得額外想辦法( Homebrew 或者 php-osx )而言著實方便了不少。

但是,系統自帶的PHP只有基礎的配置,如果想做PHP開發,Xdebug還是必須的,以下就總結一下如何在macOS High Sierra中為系統自帶的PHP增加Xdebug模塊。【推薦:PHP7教程】

基礎環境( macOS 及 PHP 信息)

  • macOS High Sierra: v10.13.3

  • PHP: v7.1.7

安裝Xdebug

Xdebug官網安裝文檔中有MAC推薦的方式,鑒于系統自帶的是PHP是v7.1.7,所以在選擇的時候,需要選擇php71-xdebug這個安裝包。

macOS PHP7怎么增加Xdebug

另外由于brew中的php71-xdebug依賴于php71的,所以建議加上--without-homebrew-php這個參數,這樣的話brew就會忽略安裝php71

brew install php71-xdebug --without-homebrew-php

不過這個時候,或許你會碰到下面這樣的報錯:

phpize
grep: /usr/include/php/main/php.h: No such file or directory
grep: /usr/include/php/Zend/zend_modules.h: No such file or directory
grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory
Configuring for:
PHP Api Version:
Zend Module Api No:
Zend Extension Api No:

提示缺失依賴,從而導致phpize無法正常工作,phpize是用來準備 PHP 擴展庫的編譯環境的,理論上系統自帶的PHP應該是有phpize的,但是沒有在/usr/include/php/*里面找到它需要的模塊,并且檢索/usr/include時發現這個目錄根本不存在。

Google了一圈,解決問題,就需要在/usr/include中補全相關的內容,在OSX v10.10以前系統,需要手動做軟鏈來解決:

sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include /usr/include

但是v10.11以后的系統重寫了安全策略,所以會遇到權限問題(sudo也不行):

ln: /usr/include: Operation not permitted

不過好在Apple為開發人員準備了Xcode,這是一個很強大的工具,但是體積也很大(下載安裝有點慢),而一般我們只需要它提供的Command Line Tools就夠了,上面的問題,其實只要安裝Command Line Tools就可以解決:

xcode-select --install

接下來,跟著提示做,安裝、同意協議...
macOS PHP7怎么增加Xdebug

等待安裝結束以后,再用 brew 來安裝 php71-xdebug:

brew install php71-xdebug --without-homebrew-php

一切結束以后,brew會給出提示:

To finish installing xdebug for PHP 7.1:
  * /usr/local/etc/php/7.1/conf.d/ext-xdebug.ini was created,
    do not forget to remove it upon extension removal.
  * Validate installation via one of the following methods:
  *
  * Using PHP from a webserver:
  * - Restart your webserver.
  * - Write a PHP page that calls "phpinfo();"
  * - Load it in a browser and look for the info on the xdebug module.
  * - If you see it, you have been successful!
  *
  * Using PHP from the command line:
  * - Run `php -i "(command-line 'phpinfo()')"`
  * - Look for the info on the xdebug module.
  * - If you see it, you have been successful!

開啟PHP的Xdebug

經過上面步驟,系統里面是有Xdebug了,但是在php.ini配置文件中不一定有,因此需要手動添加Xdebug的配置項:

[xdebug]
zend_extension="/usr/local/opt/php71-xdebug/xdebug.so"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9000
xdebug.scream = 0
xdebug.show_local_vars = 1

然后就是重啟php-fpm

# 關閉php-fpm
sudo killall php-fpm

# 啟動php-fpm
sudo php-fpm

運行php -i "(command-line 'phpinfo()')" | grep xdebug后,你就可以看到關于Xdebug的配置內容了:

xdebug
...
xdebug.remote_autostart => On => On
xdebug.remote_connect_back => On => On
xdebug.remote_cookie_expire_time => 3600 => 3600
xdebug.remote_enable => On => On
xdebug.remote_handler => dbgp => dbgp
xdebug.remote_host => localhost => localhost
xdebug.remote_log => no value => no value
xdebug.remote_mode => req => req
xdebug.remote_port => 9000 => 9000
xdebug.remote_timeout => 200 => 200
xdebug.scream => Off => Off
...

Visual Studio Code - PHP Debug

VSCode是目前最流行的開發工具之一,雖然輕量,但是對標各類IDE毫不遜色,微軟良心之作,通過安裝不同的插件可以擴展它的能力,其中有一款 PHP Debug 的插件,可以作為Xdebug的橋梁,方便直接通過Xdebug調試PHP,官方的描述十分貼切:

PHP Debug Adapter for Visual Studio Code

官網的指導也寫的相當不錯:

  1. Install XDebug
    I highly recommend you make a simple test.php file, put a phpinfo(); statement in there, then copy the output and paste it into the XDebug installation wizard. It will analyze it and give you tailored installation instructions for your environment.
    In short:

    • On Windows: Download the appropiate precompiled DLL for your PHP version, architecture (64/32 Bit), thread safety (TS/NTS) and Visual Studio compiler version and place it in your PHP extension folder.

    • On Linux: Either download the source code as a tarball or clone it with git, then compile it.

  2. Configure PHP to use XDebug by adding zend_extension=path/to/xdebug to your php.ini.
    The path of your php.ini is shown in your phpinfo() output under "Loaded Configuration File".

  3. Enable remote debugging in your php.ini:

    [XDebug]
    xdebug.remote_enable = 1
    xdebug.remote_autostart = 1

    There are other ways to tell XDebug to connect to a remote debugger than remote_autostart, like cookies, query parameters or browser extensions. I recommend remote_autostart because it "just works". There are also a variety of other options, like the port (by default 9000), please see the XDebug documentation on remote debugging for more information.

  4. If you are doing web development, don't forget to restart your webserver to reload the settings

  5. Verify your installation by checking your phpinfo() output for an XDebug section.

這里需要注意的是它推薦開啟Xdebug配置項中的remote_autostart這一項。

好了,經過上面的操作,你應該可以跟Demo里面一樣在VSCode中調試PHP了。
macOS PHP7怎么增加Xdebug

到此,相信大家對“macOS PHP7怎么增加Xdebug”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岢岚县| 榆树市| 顺义区| 丰台区| 两当县| 岳阳市| 长兴县| 乌审旗| 卓尼县| 辽阳县| 大姚县| 溧阳市| 遂溪县| 徐水县| 武平县| 治县。| 西乡县| 桓仁| 锡林浩特市| 客服| 岳普湖县| 景德镇市| 义马市| 长乐市| 金坛市| 隆化县| 积石山| 水富县| 新丰县| 金寨县| 馆陶县| 理塘县| 济阳县| 贺兰县| 望城县| 南皮县| 巨野县| 习水县| 密山市| 隆回县| 甘泉县|