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

tooyoungtoosimple simplehtmldom Doc api 도움말 문서

WBOY
풀어 주다: 2016-07-29 08:48:23
원래의
945명이 탐색했습니다.

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]');
//
  • 모두 찾기