HTML interesse |
|
Appie_Dijk schreef: [..quote..]
??
Kom een klein stukje, maar nu nog alles in stukjes knippen... HELPÂ
[..code..]
Jah, je bent op weg...
Alleen raad ik je aan om nu cURL te gebruiken. Is 1000X sneller!
<?
$startat = "<b>Market price:</b> ";
$stopat = "</span>";
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_URL, $this->_itemUrl.$this->itemId);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$this->_pageResult = curl_exec($ch);
curl_close($ch);
$exploded = explode($startat,$this->_pageResult);
$exploded = explode($stopat,$exploded[1]);
return $this;
?>
<? $startat = "<b>Market price:</b> "; $stopat = "</span>"; $ch = curl_init(); $timeout = 5; curl_setopt ($ch, CURLOPT_URL, $this->_itemUrl.$this->itemId); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $this->_pageResult = curl_exec($ch); curl_close($ch); $exploded = explode($startat,$this->_pageResult ); $exploded = explode($stopat,$exploded[1]); return $this; ?>
Ik heb de bovenstaande code, losweg uit een class van mij gehaald. Jij moet het hiermaar mee doen...
$this->.... moet je maar veranderen in eigen variables. |