本文整理汇总了PHP中MAX::errorObjToString方法的典型用法代码示例。如果您正苦于以下问题:PHP MAX::errorObjToString方法的具体用法?PHP MAX::errorObjToString怎么用?PHP MAX::errorObjToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MAX
的用法示例。
在下文中一共展示了MAX::errorObjToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: pearErrorHandler
function pearErrorHandler($oError)
{
$aConf = $GLOBALS['_MAX']['CONF'];
// Log message
$message = $oError->getMessage();
$debugInfo = $oError->getDebugInfo();
OA::debug('PEAR' . " :: {$message} : {$debugInfo}", PEAR_LOG_ERR);
// If sesssion debug, send error info to screen
$msg = '';
if (empty($aConf['debug']['production'])) {
$GLOBALS['_MAX']['ERRORS'][] = $oError;
}
// Add backtrace info
if (!empty($aConf['debug']['showBacktrace'])) {
$msg .= 'PEAR backtrace: <div onClick="if (this.style.height) {this.style.height = null;this.style.width = null;} else {this.style.height = \'8px\'; this.style.width=\'8px\'}"';
$msg .= 'style="float:left; cursor: pointer; border: 1px dashed #FF0000; background-color: #EFEFEF; height: 8px; width: 8px; overflow: hidden; margin-bottom: 2px;">';
$msg .= '<pre wrap style="margin: 5px; background-color: #EFEFEF">';
ob_start();
print_r($oError->getBacktrace());
$msg .= ob_get_clean();
$msg .= '<hr></pre></div>';
$msg .= '<div style="clear:both"></div>';
}
if (defined('TEST_ENVIRONMENT_RUNNING')) {
// It's a test, stop execution
echo $message;
exit(1);
} elseif (defined('OA_WEBSERVICES_API_XMLRPC')) {
// It's an XML-RPC response
$oResponse = new XML_RPC_Response('', 99999, $message);
echo $oResponse->serialize();
exit;
} else {
// Send the error to the screen
echo MAX::errorObjToString($oError, $msg);
}
}