手机
当前位置:查字典教程网 >编程开发 >php教程 >php抓即时股票信息
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;

}

?>

【php抓即时股票信息】相关文章:

php操作memcache缓存方法分享

php调整服务器时间的方法

php输出全球各个时区列表的方法

提升PHP执行速度全攻略(下)

提升PHP执行速度全攻略(下)

PHP巧获服务器端信息

PHP整合PayPal支付

php生成年月日下载列表的方法

提升PHP执行速度全攻略(上)

php实现的简单日志写入函数

精品推荐
分类导航