>백엔드 개발 >PHP 튜토리얼 >tooyoungtoosimple simplehtmldom Doc api 도움말 문서

tooyoungtoosimple simplehtmldom Doc api 도움말 문서

WBOY
WBOY원래의
2016-07-29 08:48:23943검색

API 참조
도우미 함수
object str_get_html ( string $content ) 문자열에서 DOM 객체를 생성합니다.
object file_get_html ( string $filename ) 파일이나 URL에서 DOM 객체를 생성합니다.
DOM 메서드 및 속성
stringplaintext HTML에서 추출된 내용을 반환합니다.
voidclear () 메모리를 정리합니다.
voidload( string $content ) 문자열에서 내용을 로드합니다.
stringsave ( [string $filename] ) 내부 DOM 트리를 다시 문자열로 덤프합니다. $filename이 설정되면 결과 문자열이 파일에 저장됩니다.
voidload_file( string $filename ) 파일이나 URL에서 콘텐츠를 로드합니다.
voidset_callback ( string $function_name ) 콜백 함수를 설정합니다.
mixedfind( string $selector [, int $index] ) CSS 선택기로 요소를 찾습니다. 인덱스가 설정된 경우 N번째 요소 개체를 반환하고, 그렇지 않으면 개체 배열을 반환합니다.
요소 메소드 및 속성
string[attribute] 요소의 속성 값을 읽거나 씁니다.
stringtag 요소의 태그 이름을 읽거나 씁니다.
stringoutertext 요소의 외부 HTML 텍스트를 읽거나 씁니다.
stringinnertext 요소의 내부 HTML 텍스트를 읽거나 씁니다.
stringplaintext 요소의 일반 텍스트를 읽거나 씁니다.
mixedfind( string $selector [, int $index] ) CSS 선택기로 하위 항목을 찾습니다. index가 설정되어 있으면 N번째 요소 객체를 반환하고, 그렇지 않으면 객체의 배열을 반환합니다.
DOM 순회
mixed$e->children ( [int $index] ) 인덱스가 설정된 경우 N번째 자식 객체를 반환하고, 그렇지 않으면 자식 배열을 반환합니다.
element$e->parent () 요소의 부모를 반환합니다.
element$e->first_child () 요소의 첫 번째 하위 항목을 반환하거나, 찾을 수 없는 경우 null을 반환합니다.
element$e->last_child () 요소의 마지막 하위 항목을 반환하거나, 찾을 수 없는 경우 null을 반환합니다.
element$e->next_sibling () 요소의 다음 형제를 반환하거나, 찾을 수 없는 경우 null을 반환합니다.
element$e->prev_sibling () 요소의 이전 형제를 반환하거나 찾을 수 없는 경우 null을 반환합니다.
낙타 명명 변환 W3C STANDARD 낙타 명명 변환을 사용하여 메서드를 호출할 수도 있습니다.
string$e->getAttribute( $name ) string$e->attribute
void$e->setAttribute( $name, $value ) void$value = $e->속성
bool$e->hasAttribute ( $name ) boolisset($e->attribute)
void$e->removeAttribute ( $name ) void$e->attribute = null
element$e ->getElementById ( $id ) mix$e->find ( "#$id", 0 )
mixed$e->getElementsById ( $id [,$index] ) mix$e->find ( "#$id" [, int $index] )
element$e->getElementByTagName ($name ) mix$e->find ( $name, 0 )
mixed$e->getElementsByTagName ( $name [, $index] ) Mixed$e->find ( $name [, int $index] )
element$e->parentNode () element$e->parent ()
Mixed$e->childNodes ( [$index] ) mix$e->children ( [int $index] )
element$e->firstChild () element$e->first_child ()
element$e->lastChild () element$e->last_child ()
element$e->nextSibling () element$e->next_sibling ()
element$e->previousSibling () element$e->prev_sibling ()
// 문자열에서 DOM 객체 생성
$html = str_get_html('Hello!');
// URL에서 DOM 객체 생성
$html = file_get_html('http://www.google.com/');
// HTML 파일에서 DOM 객체 생성
$html = file_get_html('test.htm');
// DOM 객체 생성
$html = new simple_html_dom();
// 문자열에서 HTML 로드
$html->load('Hello!');
// URL에서 HTML 로드
$html->load_file('http://www.google.com/');
// HTML 파일에서 HTML 로드
$html->load_file('test.htm');
// 모든 앵커를 찾고, 요소 객체의 배열을 반환합니다.
$ret = $html->find('a');
// (N)thanchor 찾기, 요소 객체를 반환하거나 찾을 수 없으면 null을 반환합니다(0 기반)
$ret = $html->find('a', 0);
//

모두 찾기 which 속성 id=foo
$ret = $html->find('div[id=foo]');
//
모두 찾기 id 속성
$ret = $html->find('div[id]');
// 속성 ID가 있는 모든 요소 찾기
$ret = $html->find('[id]');
// id=foo인 모든 요소 찾기
$ret = $html->find('#foo');
// class=foo인 모든 요소 찾기
$ret = $html->find('.foo');
// 모든 앵커와 이미지 찾기
$ret = $html->find('a, img');
// "title" 속성이 있는 모든 앵커와 이미지를 찾습니다.
$ret = $html->find('a[title], img[title]');
//
  • 모두 찾기

      $es = $html->find('ul li');
      // 중첩된
      찾기 태그
      $es = $html->find('div div div');
      // Find all in which class=hello
      $es = $html->find('table.hello td');
      // Find all td tags with attribite align=center in table tags
      $es = $html->find(''table td[align=center]');
      // Find all
    • in

        foreach($html->find('ul') as $ul)
        {
        foreach($ul->find('li') as $li)
        {
        // do something...
        }
        }
        // Find first
      • in first

          $e = $html->find('ul', 0)->find('li', 0);
          Supports these operators in attribute selectors:
          [attribute] Matches elements that have the specified attribute.
          [attribute=value] Matches elements that have the specified attribute with a certain value.
          [attribute!=value] Matches elements that don't have the specified attribute with a certain value.
          [attribute^=value] Matches elements that have the specified attribute and it starts with a certain value.
          [attribute$=value] Matches elements that have the specified attribute and it ends with a certain value.
          [attribute*=value] Matches elements that have the specified attribute and it contains a certain value.
          // Find all text blocks
          $es = $html->find('text');
          // Find all comment () blocks
          $es = $html->find('comment');
          // Get a attribute ( If the attribute is non-value attribute (eg. checked, selected...), it will returns true or false)
          $value = $e->href;
          // Set a attribute(If the attribute is non-value attribute (eg. checked, selected...), set it's value as true or false)
          $e->href = 'my link';
          // Remove a attribute, set it's value as null!
          $e->href = null;
          // Determine whether a attribute exist?
          if(isset($e->href))
          echo 'href exist!';
          // Example
          $html = str_get_html("
          foo bar
          ");
          $e = $html->find("div", 0);
          echo $e->tag; // Returns: " div"
          echo $e->outertext; // Returns: "
          foo bar
          "
          echo $e->innertext; // 반환: " foo bar"
          echo $e->plaintext; // 반환: " foo bar"
          $e->tag 요소의 태그 이름을 읽거나 씁니다.
          $e->outertext 요소의 외부 HTML 텍스트를 읽거나 씁니다.
          $e->innertext 내부 HTML을 읽거나 씁니다. 요소의 텍스트
          $e->plaintext 요소의 일반 텍스트를 읽거나 씁니다.
          // HTML에서 내용을 추출합니다.
          echo $html->plaintext>// 요소를 래핑합니다.
          $e->outertext = '
          ' . $e->outertext . '
          // 요소를 제거하고 해당 요소의 외부 텍스트를 빈 문자열로 설정합니다.
          $e->outertext = ''; 요소
          $e->outertext = $e->outertext . '
          foo
          '
          // 요소 삽입
          $e->outertext = '< ;div>foo

          ' . $e->outertext;
          // HTML DOM에 익숙하지 않다면 이 링크를 확인하여 자세히 알아보세요...
          // 예
          echo $html->find(" #div1", 0)->children(1)->children(1)->children(2)->id;
          // 또는
          echo $html->getElementById(" div1")->childNodes(1)->childNodes(1)->childNodes(2)->getAttribute('id');
          Camel 이름 지정 변환을 사용하여 메소드를 호출할 수도 있습니다.
          Mixed$e->children ( [int $index] ) 인덱스가 설정된 경우 N번째 하위 객체를 반환하고, 그렇지 않으면 하위 배열을 반환합니다.
          element$e->parent () 요소 element$e->first_child () 요소의 첫 번째 하위 항목을 반환하거나, 찾을 수 없는 경우 null을 반환합니다.
          element$e->last_child () 요소의 마지막 하위 항목을 반환하거나, 찾을 수 없는 경우 null을 반환합니다. 🎜>element$e->next_sibling () 요소의 다음 형제를 반환하거나, 찾을 수 없으면 null을 반환합니다.
          element$e->prev_sibling () 요소의 이전 형제를 반환하거나, 찾을 수 없으면 null을 반환합니다. 🎜>// 내부 DOM 트리를 다시 문자열로 덤프합니다.
          $str = $html;
          // 인쇄하세요!
          에코 $html;
          // 내부 DOM 트리를 다시 문자열로 덤프합니다.
          $str = $html->save();
          // 내부 DOM 트리를 파일로 다시 덤프합니다.
          $html->save('result.htm');
          // "$element" 매개변수를 사용하여 함수 작성
          function my_callback($element) {
          // 모두 숨기기 태그
          if ($element->tag=='b')
          $element->outertext = '';
          }
          // 함수 이름으로 콜백 함수를 등록합니다.
          $html->set_callback('my_callback');
          // 덤프하는 동안 콜백 함수가 호출됩니다.
          echo $html;
          以上就介绍了tooyoungtoosimple simplehtmldom Doc api帮助文档, 包括了tooyoungtoosimple wayimple 方face的内容,希望对PHP教程有兴趣的朋友有所帮助。


          성명:
          본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.