2012-08-26 4 views
1

에서 내 var_dump 나를주고있다 :가져 오기 데이터 위해서 var_dump

object(QueryPath)#2 (7) { 
    ["errTypes":"QueryPath":private]=> int(257) 
    ["document":protected]=> object(DOMDocument)#3 (34) { 
     ["doctype"]=> string(22)"(object value omitted)" 
     ["implementation"]=> string(22) "(object value omitted)" 
     ["documentElement"]=> string(22) "(object value omitted)" 
     ["actualEncoding"]=> string(5) "UTF-8" 
     ["encoding"]=> string(5) "UTF-8" 
     ["xmlEncoding"]=> string(5) "UTF-8" 
     ["standalone"]=> bool(true) 
     ["xmlStandalone"]=> bool(true) 
     ["version"]=> NULL 
     ["xmlVersion"]=> NULL 
     ["strictErrorChecking"]=> bool(true) 
     ["documentURI"]=> string(26) "http://www.therock.net.nz/" 
     ["config"]=> NULL 
     ["formatOutput"]=> bool(false) 
     ["validateOnParse"]=> bool(false) 
     ["resolveExternals"]=> bool(false) 
     ["preserveWhiteSpace"]=> bool(true) 
     ["recover"]=> bool(false) 
     ["substituteEntities"]=> bool(false) 
     ["nodeName"]=> string(9) "#document" 
     ["nodeValue"]=> NULL 
     ["nodeType"]=> int(13) 
     ["parentNode"]=> NULL 
     ["childNodes"]=> string(22) "(object value omitted)" 
     ["firstChild"]=> string(22) "(object value omitted)" 
     ["lastChild"]=> string(22) "(object value omitted)" 
     ["previousSibling"]=> NULL 
     ["attributes"]=> NULL 
     ["ownerDocument"]=> NULL 
     ["namespaceURI"]=> NULL 
     ["prefix"]=> string(0) "" 
     ["localName"]=> NULL 
     ["baseURI"]=> NULL 
     ["textContent"]=> string(48034) 
    } 
} 

어떻게 ["textContent"]를 당길 것인가?

$loadRock = $system->get_theRock(); 

var_dump($loadRock); 

답변

1

$ loadRock-> html(); 시도해보십시오. 또는 $ loadRock-> text();

+0

보리스가 맞습니다. QP-> text()는 DOM 텍스트 노드를 조금 처리합니다. 기본 DOMText 노드에 대한 세밀한 제어가 필요하지 않은 경우에는 $ qp-> get()을 사용하여 자식을 반복 할 수도 있습니다 루프에서 텍스트 노드를 선택합니다. 그러나 이것은 큰 고통입니다. – Technosophos

1

textContent이 재산 document입니다 DOMDocument 객체의 속성이지만,이 속성은 protected, 그래서 당신이 $loadRock->document->textContent를 통해 얻을 수 없습니다

내 현재 인덱스 페이지입니다.

QueryPath의 문서를 확인하고 document 속성 등에 액세스 할 수있는 방법이 있는지 확인해야합니다.