当前位置: 首页>>代码示例>>PHP>>正文


PHP DebugUtility::setTimeSpaceLimits方法代码示例

本文整理汇总了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();
开发者ID:wingmingchan,项目名称:php-cascade-ws-ns-examples,代码行数:31,代码来源:title_h1.php


注:本文中的cascade_ws_utility\DebugUtility::setTimeSpaceLimits方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。