本文整理汇总了PHP中Zone::retrieveZoneSourceId方法的典型用法代码示例。如果您正苦于以下问题:PHP Zone::retrieveZoneSourceId方法的具体用法?PHP Zone::retrieveZoneSourceId怎么用?PHP Zone::retrieveZoneSourceId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zone
的用法示例。
在下文中一共展示了Zone::retrieveZoneSourceId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
define('ZONE_URL_INDEX', $zoneUrlIndex);
define('SERVER_SOURCE_ID', Zit::getSourceId());
/* Proper Values for SIF_VALIDATE
** Y : Validate and Send Error and Log Error
** N : No Validate and Pass Message
** W : Validate and Pass Message and Log Error
*/
define('SIF_VALIDATE', 'W');
//global $USERNAME;
if ($config->code->level == 2) {
ini_set('error_reporting', E_ALL & ~E_STRICT);
} elseif ($config->code->level == 3) {
ini_set('error_reporting', E_ALL & ~E_STRICT);
} else {
ini_set('error_reporting', 0);
}
Zone::retrieveZoneSourceId();
define('NODE_NUM', 0);
try {
if (SifProcessRequest::validateXML($xml)) {
define('REC_XML', $xml);
$messageObject = new MessageObject($xml);
$messageObject->version = SifProcessRequest::retrieveVersion($messageObject);
SifProcessRequest::processMessage($messageObject);
} else {
GeneralError::xmlValidationError($messageObject->xmlStr);
}
} catch (Zend_Exception $e) {
ZitLog::writeToErrorLog("[Main Loop]", "Request Xml:\n{$messageObject->xmlStr} \n\n Errors:{$e->getTraceAsString}()", "Main Loop", $_SESSION['ZONE_ID']);
GeneralError::systemError($messageObject->xmlStr);
}