Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:&#160;GOOG NASDAQ-100 Component S&amp;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.

share|improve this question
strip_tags then put it through html_entity_decode() to get rid of the ASCII codes (the &...; bits). – SLD Dec 23 '12 at 19:38
This code works as expected on OS X, php 5.4.9, if you have issues with outputting HTML entities, do as @SLD says. – Rob Dec 23 '12 at 19:43
@SLD it works but it is not outputting '~' separated string. Rather it gives 'NASDAQ:GOOG NASDAQ-100 Component SP 500 Component' – user1518659 Dec 27 '12 at 15:33
Just like @Rob, your code runs as expected on OS X ML w/ PHP 5.3 and 5.4. It outputs with tildes. I assume you have tried some other character besides a tilde, and tried dumping the string in different ways (e.g. to a text file)? Where the ' ~ ' should be, how many spaces does it actually output? – SLD Dec 29 '12 at 4:00
1  
Ignore my previous two comments. The issue is with the explosion, not the implosion. Instead of using PHP_EOL try defining it manually, beyond that I'm out of ideas. – SLD Dec 29 '12 at 19:17
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.