1

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);
4

2 回答 2

1

textContentDOMDocumentobject的一个属性,就是property document,但是这个属性是protected,所以不能通过$loadRock->document->textContent

您需要检查 的文档QueryPath,查看是否有访问该document属性的方法或其他内容。

于 2012-08-26T08:19:19.950 回答
1

试试 $loadRock->html(); 或 $loadRock->text();

于 2012-08-26T08:39:29.673 回答