nextSibling() public method

public nextSibling ( )
Exemplo n.º 1
0
 /**
  * 動画urlの指定されたa要素を取得する
  *
  * @param  simple_html_dom_node $el
  * @return simple_html_dom_node
  **/
 private function _fetchMovieLinkElement($el)
 {
     $next_el = $el->nextSibling();
     if (is_null($next_el)) {
         return $next_el;
     }
     return $next_el->nextSibling();
 }