本文整理汇总了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();