当前位置: 首页>>代码示例>>PHP>>正文


PHP simple_html_dom::getElementsByTagName方法代码示例

本文整理汇总了PHP中simple_html_dom::getElementsByTagName方法的典型用法代码示例。如果您正苦于以下问题:PHP simple_html_dom::getElementsByTagName方法的具体用法?PHP simple_html_dom::getElementsByTagName怎么用?PHP simple_html_dom::getElementsByTagName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在simple_html_dom的用法示例。


在下文中一共展示了simple_html_dom::getElementsByTagName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: domGetContent

 /**
  * Search a DOM for a selector and return the contents.
  *
  * @param simple_html_dom $dom The DOM to search.
  * @param string $selector The CSS style selector for the content to find.
  * @param string $default The default content to return if the node isn't found.
  * @return string Returns the content of the found node or {@link $default} otherwise.
  */
 function domGetContent($dom, $selector, $default = '')
 {
     $Element = $dom->getElementsByTagName($selector);
     return isset($Element->content) ? $Element->content : $default;
 }
开发者ID:sitexa,项目名称:vanilla,代码行数:13,代码来源:functions.general.php

示例2:

HTML;
$html->load($str);
assert($html == $str);
assert($html->plaintext == 'okok</div>');
// -----------------------------------------------------------------------------
// old fashion camel naming conventions test
$str = <<<HTML

<input type="checkbox" id="checkbox" name="checkbox" value="checkbox" checked>
<input type="checkbox" id="checkbox1" name="checkbox1" value="checkbox1">
<input type="checkbox" id="checkbox2" name="checkbox2" value="checkbox2" checked>
HTML;
$html->load($str);
assert($html == $str);
assert($html->getElementByTagName('input')->hasAttribute('checked') == true);
assert($html->getElementsByTagName('input', 1)->hasAttribute('checked') == false);
assert($html->getElementsByTagName('input', 1)->hasAttribute('not_exist') == false);
assert($html->find('input', 0)->value == $html->getElementByTagName('input')->getAttribute('value'));
assert($html->find('input', 1)->value == $html->getElementsByTagName('input', 1)->getAttribute('value'));
assert($html->find('#checkbox1', 0)->value == $html->getElementById('checkbox1')->getAttribute('value'));
assert($html->find('#checkbox2', 0)->value == $html->getElementsById('checkbox2', 0)->getAttribute('value'));
$e = $html->find('[name=checkbox]', 0);
assert($e->getAttribute('value') == 'checkbox');
assert($e->getAttribute('checked') == true);
assert($e->getAttribute('not_exist') == '');
$e->setAttribute('value', 'okok');
assert($e == '<input type="checkbox" id="checkbox" name="checkbox" value="okok" checked>');
$e->setAttribute('checked', false);
assert($e == '<input type="checkbox" id="checkbox" name="checkbox" value="okok">');
$e->setAttribute('checked', true);
assert($e == '<input type="checkbox" id="checkbox" name="checkbox" value="okok" checked>');
开发者ID:nicolaes,项目名称:WatchMyStuff,代码行数:31,代码来源:dom_testcase.php


注:本文中的simple_html_dom::getElementsByTagName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。