我正在使用Ubuntu 14.04
,我在计算机上安装了LAMP。如何检查是否已安装php的 CLI 模块?
提前致谢。
答案 0 :(得分:-1)
如果你的意思是在程序中验证......
public function isPhpCLIAvailable()
{
if (exec('php -r \'echo "test";\'') === 'test') {
return true;
}
return false;
}
请注意,这假设" exec"允许功能。