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