A.s. umarım doğru değeri çekmişimdir
<?php
$oku = file_get_contents("http://www.lme.com/metals/non-ferrous/copper/");
$bol = explode('Cash Seller & Settlement', $oku);
$bol = explode('</tr>', $bol[1]);
$yaz = $bol[0];
$yaz = str_replace("<td>","",$yaz);
$yaz = str_replace("</td>","",$yaz);
echo $yaz;
?>