次のような .html ファイルがあります。
<html>
<body>
<pre style="word-wrap: break-word; white-space: pre-wrap;">{blah blah blah text that I want extracted} </pre>
</body>
</html>
<pre>
タグから内部テキストを抽出する PHP スクリプトを作成したいと考えています。Simple HTML DOM を試してみましたが、それは何もしていません。何もエコーしません。ここで何が間違っているのか、Simple HTML Domを使用する必要があるのか どうかわかりません。HTMLファイルからテキストを抽出するためのPHPスクリプトのコードは次のとおりです。
<?php
include 'simple_html_dom.php';
// Create DOM from URL or file
$html = file_get_html('http://data.mtgox.com/api/2/BTCUSD/money/ticker');
// Find all images
foreach($html->find('img') as $element)
echo $element->src . '<br>';
// Find all links
foreach($html->find('pre') as $element)
echo $element . '<br>';
?>
なぜそれが機能しないのかについてのアイデアはありますか?