本文整理汇总了PHP中Piwik\Common::isPhpCgiType方法的典型用法代码示例。如果您正苦于以下问题:PHP Common::isPhpCgiType方法的具体用法?PHP Common::isPhpCgiType怎么用?PHP Common::isPhpCgiType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Piwik\Common
的用法示例。
在下文中一共展示了Common::isPhpCgiType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkCompatibility
private function checkCompatibility()
{
if (Common::isPhpCgiType()) {
echo 'Piwik Console is known to be not compatible with PHP-CGI (you are using ' . php_sapi_name() . '). ' . 'Please execute console using PHP-CLI. For instance "/usr/bin/php-cli console ..."';
echo "\n";
exit(1);
}
}
示例2: isSupported
public static function isSupported()
{
return Common::isPhpCliMode() && !Common::isPhpCgiType();
}
示例3: supportsAsync
/**
* What is missing under windows? Detection whether a process is still running in Process::isProcessStillRunning
* and how to send a process into background in start()
*/
public function supportsAsync()
{
return Process::isSupported() && !Common::isPhpCgiType() && $this->findPhpBinary();
}