猿问

如何在 ubuntu 18.04 上安装 pecl

我正在使用 ubuntu 18.04 泊坞窗图像。并安装

apt install php

我想安装 xdebug 但没有 pecl。如何安装pecl?


暮色呼如
浏览 261回答 3
3回答

Smart猫小萌

apt install php-dev我使用(php7.4)在ubuntu 20.04上安装了pecl 。这可能很有用。

慕森卡

我对码头工人了解不多。这是我在 Ubuntu 18.04(在 HyperV VM 中)上为 PhpStorm 安装 XDebug 的笔记。可能有一些错误,但这对我有用。apt install php-xdebug##### Ubuntu Server #####mkdir -p /var/log/xdebugtouch /var/log/xdebug/xdebug.logchown -R www-data:www-data /var/log/xdebugnano /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 = 1xdebug.remote_enable = 1xdebug.remote_port = 9000xdebug.remote_connect_back = 1xdebug.idekey = PHPSTORMxdebug.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 = reqsystemctl restart apache2

犯罪嫌疑人X

运行下面的命令安装php-pear,然后你就可以使用“pecl”了。sudo apt install php-pear
随时随地看视频慕课网APP
我要回答