我基本上是PEAR(和PHPDocumentor)的新手;我使用PEAR CLI安装了PHPDocumentor,一切似乎都很好……直到我去使用它,此时我收到以下错误:
@H_301_10@
嗯,这个问题很滑稽,但我刚刚遇到了同样的问题并且在经过多次努力之后解决了这个问题,所以我想我会分享.
Warning: require(PHPDocumentor/PHPDocumentor/PHPdoc.inc): Failed to open stream: No such file or directory in /usr/local/bin/PHPdoc on line 40 Fatal error: require(): Failed opening required 'PHPDocumentor/PHPDocumentor/PHPdoc.inc' (include_path='.:/usr/share/pear') in /usr/local/bin/PHPdoc on line 40
我在网上找不到任何关于错误的内容,所以我再次通过命令行卸载/重新安装,没有错误,但我遇到了同样的问题.我忽略了什么吗?正如我所说,我对PEAR很新:)
谢谢. d
我运行了梨配置显示为@ashnazg详细,我的PHP_dir设置为/usr/lib / PHP.我试着从那里运行PHPdoc -h而且 – 瞧! – 有效.所以对我来说问题是PHP需要知道这条路径.我编辑了PHP.ini(对我来说是在/private/etc/PHP.ini中)并编辑了include_path以包含/usr/lib / PHP.我看起来像:
include_path = ".:/usr/lib/PHP"
在那之后,它就像一个魅力!希望这有助于其他人. FWIW,我在Snow Leopard上,我通过运行sudo pear install PHPdocumentor安装了PHPdoc.