本文整理匯總了PHP中cascade_ws_utility\DebugUtility::setTimeSpaceLimits方法的典型用法代碼示例。如果您正苦於以下問題:PHP DebugUtility::setTimeSpaceLimits方法的具體用法?PHP DebugUtility::setTimeSpaceLimits怎麽用?PHP DebugUtility::setTimeSpaceLimits使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cascade_ws_utility\DebugUtility
的用法示例。
在下文中一共展示了DebugUtility::setTimeSpaceLimits方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: assetTreeSetPageDisplayName
Note that the method call $page->getText fails
if the page is absolutely blank. When a page contains
no contents at all, the structured data object is also
blank. My library will treat such a page as an XHTML page,
not a page associated with a data definition. Manually fill in
some data so that the structured data becomes visible.
*/
$start_time = time();
require_once 'auth_chanw.php';
use cascade_ws_AOHS as aohs;
use cascade_ws_constants as c;
use cascade_ws_asset as a;
use cascade_ws_property as p;
use cascade_ws_utility as u;
use cascade_ws_exception as e;
u\DebugUtility::setTimeSpaceLimits();
try {
$site_name = "hrintra";
$at = $cascade->getSite($site_name)->getAssetTree();
$at->traverse(array(a\Page::TYPE => array("assetTreeSetPageDisplayName")));
u\DebugUtility::outputDuration($start_time);
} catch (\Exception $e) {
echo S_PRE . $e . E_PRE;
u\DebugUtility::outputDuration($start_time);
} catch (\Error $er) {
echo S_PRE . $er . E_PRE;
u\DebugUtility::outputDuration($start_time);
}
function assetTreeSetPageDisplayName(aohs\AssetOperationHandlerService $service, p\Child $child, array $params = NULL, array &$results = NULL)
{
$type = $child->getType();