码迷,mamicode.com
首页 > Web开发 > 详细

php最快捷的插入数据,3000万仅需5秒

时间:2017-11-01 12:12:41      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:into   rip   charset   lis   pcl   head   header   数据库   file   

<?php
header(‘content-type:text/html;charset=utf-8‘);
//采集数据
$url="http://www.keepclub.com/club/environ/";
if(file_exists(‘aa.txt‘)){
$data=file_get_contents(‘aa.txt‘);
}else{
$data=file_get_contents($url);
file_put_contents(‘aa.text‘, $data);
}
$arr=‘#<div class="hd_list">(.*)</div>#isU‘;
preg_match_all($arr, $data, $src);
$arr2=‘#<li.*><img src="(.*)" /></li>#isU‘;
preg_match_all($arr2, $src[1][0], $src2);
//连接数据库
$dsn = "mysql:host=localhost;dbname=数据库名称";
$db = new PDO($dsn, ‘数据库账号‘, ‘数据库密码‘);
$db->query("set names utf8");
$path=dirname($_SERVER[‘SCRIPT_NAME‘]);//根目录
$arry=array();
foreach ($src2[1] as $k => $img) {
$paths=pathinfo($img);
$newimg=‘img/‘."club".$k.‘.‘.$paths[‘extension‘];
file_put_contents($newimg,file_get_contents($img));
$Paths=$path.‘/‘.$newimg;
array_push($arry,"(null,null,‘$Paths‘)");
}
$count = $db->exec("insert into 表名 values".implode(‘,‘,$arry));
if($count){
echo "成功";
}else{
echo "失败";
}
?>

php最快捷的插入数据,3000万仅需5秒

标签:into   rip   charset   lis   pcl   head   header   数据库   file   

原文地址:http://www.cnblogs.com/jiaoaozuoziji/p/7765545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!