我已经安装了Pear和我需要的所有包裹。 (例如PHP_CodeSniffer,PhpDocumentor)。我确认已使用
安装此软件包C:\wamp\www>pear list
但是当我尝试在我的Windows评论提示中使用此评论时,我收到错误,如
'phpcs' is not recognized as an internal or external command
请给我任何建议。
答案 0 :(得分:0)
你可能在路径环境变量方面存在一些问题(有时重启以强制环境刷新)
但在你的情况下,你cvan指定每个exe的完整路径:
C:\>path\to\php\bin\php.exe path\to\phpcs path\to\file.php
答案 1 :(得分:0)
我已根据以下链接解决了此问题。
安装PHP_CodeSniffer的另一种方法是从GitHub克隆存储库:
git clone git://github.com/squizlabs/PHP_CodeSniffer.git
cd PHP_CodeSniffer
php scripts/phpcs -h
http://blog.a2design.biz/blog/2012/08/19/automation-of-php-coding-style-check-using-git-hooks/
答案 2 :(得分:0)
您需要在PATH中拥有pear bin目录。
请参阅http://pear.php.net/manual/en/installation.checking.php#13557