3 回答

TA貢獻(xiàn)1911條經(jīng)驗(yàn) 獲得超7個(gè)贊
apt install php-dev
我使用(php7.4)在ubuntu 20.04上安裝了pecl 。這可能很有用。

TA貢獻(xiàn)1806條經(jīng)驗(yàn) 獲得超8個(gè)贊
我對(duì)碼頭工人了解不多。這是我在 Ubuntu 18.04(在 HyperV VM 中)上為 PhpStorm 安裝 XDebug 的筆記??赡苡幸恍╁e(cuò)誤,但這對(duì)我有用。
apt install php-xdebug
##### Ubuntu Server #####
mkdir -p /var/log/xdebug
touch /var/log/xdebug/xdebug.log
chown -R www-data:www-data /var/log/xdebug
nano /etc/php/7.2/mods-available/xdebug.ini
################################################################################################################################################################################################################
# The default value for zend_extension is enough. But if you want to change, go to /usr/lib/php/ and find latest folder with xdebug.so (in my case '20180731') and make full path to provide in zend_extension #
################################################################################################################################################################################################################
xdebug.default_enable = 1
xdebug.remote_enable = 1
xdebug.remote_port = 9000
xdebug.remote_connect_back = 1
xdebug.idekey = PHPSTORM
xdebug.remote_log = /var/log/xdebug/xdebug.log
;zend_extension=/usr/lib/php/20180731/xdebug.so
;xdebug.remote_host = 127.0.0.1
;xdebug.remote_autostart = 1
;xdebug.remote_handler = dbgp
;xdebug.remote_mode = req
systemctl restart apache2

TA貢獻(xiàn)2080條經(jīng)驗(yàn) 獲得超4個(gè)贊
運(yùn)行下面的命令安裝php-pear,然后你就可以使用“pecl”了。
sudo apt install php-pear
- 3 回答
- 0 關(guān)注
- 298 瀏覽
添加回答
舉報(bào)