本文整理匯總了PHP中Builder::make方法的典型用法代碼示例。如果您正苦於以下問題:PHP Builder::make方法的具體用法?PHP Builder::make怎麽用?PHP Builder::make使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Builder
的用法示例。
在下文中一共展示了Builder::make方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: addChild
/**
* @param $tagTextOrArray
*
* @return self
*/
protected function addChild($tagTextOrArray)
{
// a list of arguments to be passed to builder->make()
if (is_array($tagTextOrArray) && !empty($tagTextOrArray)) {
if (!isset($this->builder)) {
throw new \InvalidArgumentException(sprintf('Builder not attached to tag `%s`', $this->tag));
}
$tagName = $tagTextOrArray[0];
$props = isset($tagTextOrArray[1]) ? $tagTextOrArray[1] : [];
$content = isset($tagTextOrArray[2]) ? $tagTextOrArray[2] : [];
$tagTextOrArray = $this->builder->make($tagName, $props, $content);
}
array_push($this->content, $tagTextOrArray);
return $this;
}
示例2: buildHTML
public function buildHTML()
{
$this->HTML = Builder::make();
}