本文整理汇总了PHP中cls_template::fetch方法的典型用法代码示例。如果您正苦于以下问题:PHP cls_template::fetch方法的具体用法?PHP cls_template::fetch怎么用?PHP cls_template::fetch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cls_template
的用法示例。
在下文中一共展示了cls_template::fetch方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: order_attention
/**
* 获取下单提醒说明文字
*/
function order_attention($order, $shop)
{
global $_CFG;
$ptime = get_order_pickup_time(0, 0, $shop['open_time'], $shop['close_time']);
$tpl = new cls_template();
$tpl->assign('lock_time', $_CFG['order_lock_time']);
$tpl->assign('pickup_start_time', date('Y-m-d H:i', $ptime['start']));
$tpl->assign('pickup_end_time', date('Y-m-d H:i', $ptime['end']));
$tpl->assign('limit_time', $_CFG['shipping_limit_time']);
return $tpl->fetch('str:' . $_CFG['order_attention']);
}