本文整理汇总了PHP中ErrorHandler::getEnvironment方法的典型用法代码示例。如果您正苦于以下问题:PHP ErrorHandler::getEnvironment方法的具体用法?PHP ErrorHandler::getEnvironment怎么用?PHP ErrorHandler::getEnvironment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ErrorHandler
的用法示例。
在下文中一共展示了ErrorHandler::getEnvironment方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onAnyError
public function onAnyError($aOptions, $bNeverPrint = false, $bNeverNotifyDeveloper = false)
{
if ($bNeverNotifyDeveloper) {
return;
}
$aProwlConfig = Settings::getSetting('prowl', 'users', array());
$aKeys = array();
foreach ($aProwlConfig as $aConfig) {
if (in_array(ErrorHandler::getEnvironment(), $aConfig['environments'])) {
$aKeys[] = $aConfig['key'];
}
}
if (count($aKeys) == 0) {
return;
}
$aError =& $aOptions[0];
$aProwlParams = array();
$aProwlParams['apikey'] = implode(',', $aKeys);
$aProwlParams['application'] = "Rapila on " . $aError['host'];
$aProwlParams['event'] = "Error on in " . $aError['path'];
$aProwlParams['url'] = 'http://' . $aError['host'] . $aError['path'];
$aProwlParams['description'] = StringUtil::truncate($aError['message'], 800);
$sParams = http_build_query($aProwlParams);
$rCurl = curl_init('https://api.prowlapp.com/publicapi/add');
curl_setopt($rCurl, CURLOPT_POSTFIELDS, $sParams);
curl_setopt($rCurl, CURLOPT_POST, 1);
curl_exec($rCurl);
}
示例2: __construct
public function __construct($aRequestPath)
{
parent::__construct($aRequestPath);
if (ErrorHandler::getEnvironment() === 'production') {
exit;
}
}
示例3: clearOverrides
/**
* Removes test case overrides
*/
public static function clearOverrides()
{
if (ErrorHandler::getEnvironment() === 'test') {
self::$OVERRIDES = array();
} else {
self::$OVERRIDES = null;
}
}