本文整理匯總了PHP中H2o::createTag方法的典型用法代碼示例。如果您正苦於以下問題:PHP H2o::createTag方法的具體用法?PHP H2o::createTag怎麽用?PHP H2o::createTag使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類H2o
的用法示例。
在下文中一共展示了H2o::createTag方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: func_get_args
function &parse()
{
$until = func_get_args();
$nodelist = new NodeList($this);
while ($token = $this->tokenstream->next()) {
//$token = $this->tokenstream->current();
switch ($token->type) {
case 'text':
$node = new TextNode($token->content, $token->position);
break;
case 'variable':
$args = H2o_Parser::parseArguments($token->content, $token->position);
$variable = array_shift($args);
$filters = $args;
$node = new VariableNode($variable, $filters, $token->position);
break;
case 'comment':
$node = new CommentNode($token->content);
break;
case 'block':
if (in_array($token->content, $until)) {
$this->token = $token;
return $nodelist;
}
$temp = preg_split('/\\s+/', $token->content, 2);
$name = $temp[0];
$args = count($temp) > 1 ? $temp[1] : null;
$node = H2o::createTag($name, $args, $this, $token->position);
$this->token = $token;
}
$this->searching = join(',', $until);
$this->first = false;
$nodelist->append($node);
}
if ($until) {
throw new TemplateSyntaxError('Unclose tag, expecting ' . $until[0]);
}
return $nodelist;
}