function getYahooQuote($stockSymbol = "CCR")
{
if (!$targetURL) $targetURL = "http://finance.yahoo.com/q?s=$stockSymbol&d=t"; //设定要抓取的URL目标
$fd = fopen("$targetURL", "r");
$stopExtract = 0;
$startExtract = 0;
while (!feof($fd))
{
$buffer = fgets($fd, 4096);
//echo trim($buffer)."n";
if (strstr($buffer, "rowspan=3"))
{
//echo "extract started at line #$lineCountn";
$startExtract = 1;
}
if ($startExtract && !$stopExtract)
{