如何确定使用哪个
PHP?
例如,如果有/usr/local / bin / PHP和usr / local / bin / PHP5,我怎么知道我的PHP脚本正在使用哪一个?
如果你正在使用PHP CLI,那么尝试使用theese shell命令(我假设你在这里使用linux)
which PHP - will locate the PHP executable (this should be the default PHP used by you) whereis PHP - The first path displayed will be the location of the PHP executable echo $PATH - will print a list of paths separated by ":" where the system looks for commands
如果您使用PHP作为Apache模块,那么PHPinfo()将告诉您使用的PHP版本,以及PHP配置文件,而不是PHP路径.如果您有2个版本的PHP可执行文件,那么这将对您有所帮助.如果它们是相同的版本那么它真的不重要谁是谁:)
如果你想找到PHP版本,那么PHP -v将在CLI中打印PHP版本并安装任何Zend模块.
如果你想找出包含的ini文件,那么PHP –ini将显示由PHP模块加载的ini文件列表(这适用于CLI版本).