Here I am trying to scrape content from webpage and print it as tilde separated value. This is what I am trying.
<?php
error_reporting(E_ALL);
echo '<pre>';
// ACQUIRE THE DOCUMENT
$url = 'http://en.wikipedia.org/wiki/Google';
$htm = file_get_contents($url);
// ACTIVATE THIS TO SEE THE ENTIRE DOCUMENT
// echo htmlentities($htm);
// ISOLATE THE "TRADED AS" PART
$sig = 'Traded as';
$arr = explode($sig, $htm);
$htm = $arr[1];
$sig = '</tr>';
$arr = explode($sig, $htm);
$htm = $arr[0];
// REFORMAT THE DATA INTO A TILDE-SEPARATED STRING
$new = trim(strip_tags($htm));
$new = explode(PHP_EOL, $new);
$new = implode(' ~ ', $new);
// SHOW THE WORK PRODUCT
var_dump($new);
?>
However the output I get is not same as output I expected. This is the output I get
<pre>string(60) "NASDAQ: GOOG
NASDAQ-100 Component
S&P 500 Component"
But This is the output I expect.
string(64) "NASDAQ: GOOG ~ NASDAQ-100 Component ~ S&P 500 Component"
Where I am missing? Hope I am clear with my question. Any help would be appreciated.
strip_tagsthen put it throughhtml_entity_decode()to get rid of the ASCII codes (the&...;bits). – SLD Dec 23 '12 at 19:38PHP_EOLtry defining it manually, beyond that I'm out of ideas. – SLD Dec 29 '12 at 19:17