本文整理汇总了PHP中HtmlObject\Element::setAttribute方法的典型用法代码示例。如果您正苦于以下问题:PHP Element::setAttribute方法的具体用法?PHP Element::setAttribute怎么用?PHP Element::setAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HtmlObject\Element
的用法示例。
在下文中一共展示了Element::setAttribute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fromHtml
public static function fromHtml($html)
{
$dom = new HtmlDomParser();
$r = $dom->str_get_html($html);
$nodes = $r->childNodes();
$node = $nodes[0];
$element = new Element($node->tag);
foreach ($node->getAllAttributes() as $key => $value) {
$element->setAttribute($key, $value);
}
$column = new static($element);
return $column;
}
示例2: getPresetContainerHtmlObject
public function getPresetContainerHtmlObject()
{
$dom = new HtmlDomParser();
$r = $dom->str_get_html($this->arrayPreset['container']);
if (is_object($r)) {
$nodes = $r->childNodes();
$node = $nodes[0];
if (is_object($node)) {
$element = new Element($node->tag);
foreach ($node->getAllAttributes() as $key => $value) {
$element->setAttribute($key, $value);
}
}
}
if (!isset($element)) {
$element = new Element('div');
}
return $element;
}
示例3: __toString
/**
* @return string
*/
public function __toString()
{
$e = new Element('script');
$e->type('text/javascript')->src($this->getAssetURL());
if (count($this->combinedAssetSourceFiles)) {
$source = '';
foreach ($this->combinedAssetSourceFiles as $file) {
$source .= $file . ' ';
}
$source = trim($source);
$e->setAttribute('data-source', $source);
}
return (string) $e;
}