9

这个问题之前已经解决过,我尝试过提供的解决方案,并认为我做错了什么。我正在尝试使用 Mountaion Lion 在 Mac 上配置 PHP Codesniffer。我认为这并不重要,但我使用 XAMMP。运行 phpcs 时出现以下错误。

Warning: include_once(PHP/CodeSniffer/CLI.php): failed to open stream: No such file or directory in /usr/bin/phpcs on line 31

Warning: include_once(): Failed opening 'PHP/CodeSniffer/CLI.php' for inclusion (include_path='.:') in /usr/bin/phpcs on line 31

Fatal error: Class 'PHP_CodeSniffer_CLI' not found in /usr/bin/phpcs on line 34

这个错误,基于所有的搜索,是因为 php.ini 中的 include_path 不正确。据我了解,这条路径应该是梨所在的目录。当我运行 pear config-get php_dir 它返回 /usr/lib/php/pear 我预料到的。所以我修改了 php.ini 文件(这个文件是系统上唯一的 php.ini,所以它没有从另一个文件中获取设置)为:

include_path = ".:/usr/lib/php/pear/"

这看起来不错,但我不断收到同样的错误。我已经删除了领先的 .: 但这没有帮助......而且它不应该工作。我还删除了尾随 / 和相同的结果。请注意,phpcs 位于 usr/bin 目录中。下面是运行 pear config-show 的结果

Configuration (channel pear.php.net):
=====================================
Auto-discover new Channels     auto_discover    1
Default Channel                default_channel  pear.php.net
HTTP Proxy Server Address      http_proxy       <not set>
PEAR server [DEPRECATED]       master_server    pear.php.net
Default Channel Mirror         preferred_mirror pear.php.net
Remote Configuration File      remote_config    <not set>
PEAR executables directory     bin_dir          /usr/bin
PEAR documentation directory   doc_dir          /usr/lib/php/pear/docs
PHP extension directory        ext_dir          /usr/lib/php/extensions/no-debug-non-zts-20090626
PEAR directory                 php_dir          /usr/lib/php/pear
PEAR Installer cache directory cache_dir        /private/tmp/pear/cache
PEAR configuration file        cfg_dir          /usr/lib/php/pear/cfg
directory
PEAR data directory            data_dir         /usr/lib/php/pear/data
PEAR Installer download        download_dir     /private/tmp/pear/download
directory
PHP CLI/CGI binary             php_bin          /usr/bin/php
php.ini location               php_ini          /private/etc/php.ini
--program-prefix passed to     php_prefix       <not set>
PHP's ./configure
--program-suffix passed to     php_suffix       <not set>
PHP's ./configure
PEAR Installer temp directory  temp_dir         /JimS/temp
PEAR test directory            test_dir         /usr/lib/php/pear/tests
PEAR www files directory       www_dir          /usr/lib/php/pear/www
Cache TimeToLive               cache_ttl        3600
Preferred Package State        preferred_state  stable
Unix file mask                 umask            22
Debug Log Level                verbose          1
PEAR password (for             password         <not set>
maintainers)
Signature Handling Program     sig_bin          /usr/local/bin/gpg
Signature Key Directory        sig_keydir       /private/etc/pearkeys
Signature Key Id               sig_keyid        <not set>
Package Signature Type         sig_type         gpg
PEAR username (for             username         <not set>
maintainers)
User Configuration File        Filename         /Users/JimS/.pearrc
System Configuration File      Filename         /private/etc/pear.conf

有任何想法吗?我很容易出现拼写错误,所以这总是有可能的,所以我放在这里的所有东西都是剪切/粘贴的。

4

3 回答 3

7

有一篇关于如何启动并运行它的优秀文章:

http://viastudio.com/configure-php-codesniffer-for-mac-os-x/

我按照简单的说明进行操作,并立即让它工作!

秘诀是使用以下命令修复包含路径:

sudo mkdir -p /Library/Server/Web/Config/php

sudo touch /Library/Server/Web/Config/php/local.ini

echo 'include_path = ".:'`pear config-get php_dir`'"' | sudo tee -a /Library/Server/Web/Config/php/local.ini
于 2015-03-13T23:44:35.283 回答
2

在 MacOS High Sierra 上,只需10.3.22 个简单的步骤:

sudo cp /etc/php.ini.default /etc/php.ini
echo 'include_path = ".:'`pear config-get php_dir`'"' | sudo tee -a /etc/php.ini

最后一行设置文件include_path末尾的/etc/php.ini

于 2018-02-06T16:01:24.077 回答
0

macOS 10.15.5 上的工作解决方案。使用的 PHP 版本:7.3.19,使用自制软件安装。Pphcs 是使用 pear 安装的

sudo pear install PHP_CodeSniffer
  • 步骤 1. 识别 php 版本和使用的 php.ini php -i | grep ini。输出将类似于下面给出的内容。注意价值Loaded Configuration File。对应的值Loaded Configuration File就是我们需要编辑的文件。
Loaded Configuration File => /usr/local/etc/php/7.3/php.ini
Scan this dir for additional .ini files => /usr/local/etc/php/7.3/conf.d
Additional .ini files parsed => /usr/local/etc/php/7.3/conf.d/ext-opcache.ini,
/usr/local/etc/php/7.3/conf.d/ext-xdebug.ini
user_ini.cache_ttl => 300 => 300
user_ini.filename => .user.ini => .user.ini
Supported handlers => ndbm cdb cdb_make inifile flatfile
init_command_executed_count => 0
init_command_failed_count => 0
  • 步骤 2. 用 识别梨路径pear config-get php_dir。输出将是类似的路径/usr/local/share/pear@7.3。复制此路径。

  • 步骤 3. 打开步骤 1 中获得的配置文件,并在其中添加以下行 include_path = "PATH OBTAINED IN STEP 2。在这种情况下,include_path = "/usr/local/share/pear@7.3"

本质上,它的作用是在 php cli 加载时加载所有 Pear 文件。

于 2020-09-23T01:32:01.583 回答