本文整理匯總了PHP中kekezu::clearCache方法的典型用法代碼示例。如果您正苦於以下問題:PHP kekezu::clearCache方法的具體用法?PHP kekezu::clearCache怎麽用?PHP kekezu::clearCache使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類kekezu
的用法示例。
在下文中一共展示了kekezu::clearCache方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
} else {
$arrOrderinfo = db_factory::get_one(sprintf("select order_id from %switkey_order_detail where obj_id=%d and obj_type = 'task'", TABLEPRE, $id));
}
$obj = new $className($arrTaskInfo);
$arrResult = $obj->dispose_order($arrOrderinfo['order_id']);
if (intval($t) == 1) {
$jumpUrl = 'index.php?do=task&id=' . $id;
db_factory::updatetable(TABLEPRE . 'witkey_task', array('task_status' => 6), array('task_id' => intval($id)));
$task_info = db_factory::get_one('select * from ' . TABLEPRE . 'witkey_task where task_id = ' . intval($id));
$work_info = db_factory::get_one('select * from ' . TABLEPRE . 'witkey_task_work where task_id = ' . intval($id) . ' and work_status=4');
$objYj = new yijia_task_class($task_info);
$objYj->create_agree_date($work_info);
} else {
$jumpUrl = 'index.php?do=pubtask&id=' . $arrTaskInfo['model_id'] . '&step=step4&taskId=' . $id . '&status=1';
}
kekezu::clearCache();
header('Location:' . $jumpUrl);
break;
case 'service':
if ($orderId) {
$arrServcie = db_factory::get_one("select * from " . TABLEPRE . "witkey_service where service_id=" . $id . "");
PayitemClass::payPayitemOrder($orderId);
$jumpUrl = 'index.php?do=pubgoods&id=' . $arrServcie['model_id'] . '&step=step3&serviceId=' . $id;
header('Location:' . $jumpUrl);
}
break;
case 'order':
break;
}
}
}