在 XAMPP 中对 wp-cli.phar 使用不同的 php.ini

Use different php.ini for wp-cli.phar in XAMPP

我试图在 XAMPP 中使用 wordpress 的 wp-cli:

我在 ubuntu 16.04

中将 wp-cli.phar 下载到 XAMPP 中的 wordpress 目录中
/opt/lampp/htdocs/wordpress/

提示php wp-cli.phar

Your PHP installation appears to be missing the MySQL extension which is required by WordPress.

并检查信息:php wp-cli.phar --info

PHP binary: /usr/bin/php7.0
PHP version:    7.0.8-0ubuntu0.16.04.2
php.ini used:   /etc/php/7.0/cli/php.ini
WP-CLI root dir:    phar://wp-cli.phar
WP-CLI packages dir:    
WP-CLI global config:   
WP-CLI project config:  /opt/lampp/htdocs/wordpress/wp-cli.local.yml
WP-CLI version: 0.25.0

我注意到我没有使用 XAMPP 中安装的 PHP。

如何更改 wp-cli.phar 路径以使用 /opt/lampp/etc 中的 php.ini?

您的输出看起来仍然像 wpcli 在您的系统中使用 php 而不是 php 形式 xampp.

要使 wpcli 与 xampp 一起工作,您需要在位于主目录的 .profile 文件中定义以下规则:

第 1 步:

nano ~/.profile (or open your .profile with whatever editor you are              confortable with)

第 2 步: 在 .profile

的最顶部添加以下代码
# Define path for XAMPP
XAMPP_PATH=/opt/lampp/bin:/opt/lampp/sbin
export PATH="$XAMPP_PATH:$PATH"

第三步:保存(CTRL + O nano 和 CTRL + X 到 exit/close)

第四步:运行源命令读取,并执行.profile文件中设置的新PATH变量。

$ source ~/.profile

第 5 步:键入 wp --info 并检查输出。它应该与 xampp 完美配合,这实际上是我对 Wordpress 开发的设置。