PHP头条
热点:

php抓即时股票信息


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;  
}  
?>     
   
  

www.phpzy.comtrue/phprm/34526.htmlTechArticlephp抓即时股票信息 php (做为现在的主流开发语言) 抓即时股票信息 ? file_name="index.htm"; if(is_file(file_name)) exec("cat file_name",buffer); for(i=0;icount(buffer);i++) if(strstr(buffer[i],"!--股市每日动态--"))...

相关文章

    暂无相关文章

PHP之友评论

今天推荐