alex.hughson Posted February 26, 2008 Share Posted February 26, 2008 I am using snoopy to grab web pages for an app i am building, and am confused. when i call print $noop->results; the page i retreived is printed, but when i say $page = $noop->results; a string of the html is not put into $page. my (perhaps naive) assumptions seem to be wrong, can anybody clear up what is going on here? Link to comment https://forums.phpfreaks.com/topic/93058-print-vs-assign-to-string/ Share on other sites More sharing options...
uniflare Posted February 26, 2008 Share Posted February 26, 2008 hmm, $noop->results seems to be a variable inside a class, try using: print_r($noop); see what that tells you. Link to comment https://forums.phpfreaks.com/topic/93058-print-vs-assign-to-string/#findComment-476874 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.