当前位置:Gxlcms > PHP基础 > php抓即时股票信息

php抓即时股票信息

时间:2021-07-01 10:21:17 帮助过:31人阅读

php抓即时股票信息
<?  
$file_name="index.htm";  
if(is_file($file_name)) {  
exec("cat $file_name",$buffer);  
for($i=0;$i<count($buffer);$i++) {  
if(strstr($buffer[$i],"<!--股市每日動態-->")) break; //找到這一行  
}  

for($j=$i;$j<$i+70;$j++) { //抓以下70行  
$str.= $buffer[$j];  
}  
echo $str;  
}  
?>     

  

人气教程排行