本文整理汇总了PHP中Trace::setDisabled方法的典型用法代码示例。如果您正苦于以下问题:PHP Trace::setDisabled方法的具体用法?PHP Trace::setDisabled怎么用?PHP Trace::setDisabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Trace
的用法示例。
在下文中一共展示了Trace::setDisabled方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test
public function test($testId)
{
Trace::setDisabled();
$test = new extasyTestModel();
$found = $test->get($testId);
if ($found) {
$test->execute();
$result = array('lastTestDate' => $test->lastTestDate->getValue(), 'testResult' => $test->obj_lastResult->getAdminViewValue());
die(json_encode($result));
} else {
throw new Exception('test model not found ');
}
}
示例2: outputDebugResults
protected function outputDebugResults()
{
$this->loadSystemConfig();
$value = intval($this->systemConfig->enable_debug->value);
if ($value) {
if (CMSAuth::getInstance()->isLogined()) {
Trace::setDisabled(false);
$this->insertIntoResponse(Trace::finish());
}
}
}
示例3: output
public function output()
{
print json_encode($this->aOutput);
Trace::setDisabled();
die;
}
示例4: outputJSONP
/**
* -------------------------------------------------------------------------------------------
* Формирует данные в json форме
* @return
* -------------------------------------------------------------------------------------------
*/
public function outputJSONP($callback)
{
print $callback . '(' . json_encode($this->aOutput) . ');';
Trace::setDisabled();
die;
}