本文整理汇总了PHP中Params::push方法的典型用法代码示例。如果您正苦于以下问题:PHP Params::push方法的具体用法?PHP Params::push怎么用?PHP Params::push使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Params
的用法示例。
在下文中一共展示了Params::push方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: renderResult
public function renderResult()
{
$request_part = Request::getRequestPart();
$dot_pos = strpos($request_part, ".");
$page_name = substr($request_part, 1, $dot_pos - 1);
$page = PageFactory::create($page_name, new DataHolder());
Params::push();
Params::importFromPost(false);
Params::importFromGet(true);
ob_start();
$page->render();
$page_result = ob_get_contents();
ob_end_clean();
Params::pop();
PageData::instance()->set(Html::get_default_content_save_path(), $page_result);
render(PageData::instance()->get("/"));
//trova il layout e renderizza il tutto.
}
示例2: execute
function execute()
{
Params::push();
//callback a cui è possibile linkarsi
$this->__before_dispatch_action();
//posso agire su action, format e params ...
$this->__execute_action();
//trasformo i dati ...
if ($this->is_error) {
$final_result = $this->format_helper->formatError($this->action_result);
} else {
$final_result = $this->format_helper->formatOutputData($this->action_result);
}
//callback a cui è possibile linkarsi
$this->__after_dispatch_action();
//da vederne ancora l'utilizzo, eventualmente concatenare altre azioni??
Params::pop();
//tolgo i parametri dalla pila
if ($final_result instanceof IActionCommand) {
$final_result->execute();
return null;
} else {
return $final_result;
}
}