Home > php教程 > php手册 > php导入phpmyadmin生成 sql文件做法

php导入phpmyadmin生成 sql文件做法

WBOY
Release: 2016-06-13 10:08:32
Original
1234 people have browsed it

分享一下 我所用的方法。只对php教程myadmin导出的sql文件有效

$dbfile="test.sql";
 $content=iconv("utf-8","gb2312",file_get_contents($dbfile));
 //获取创建的数据
 //去掉注释
 $content=preg_replace("/--.*n/iu","",$content);
 //替换前缀
 $content=str_replace("ct_",table_pre,$content);

$carr=array();
 $iarr=array();
 //提取create
 preg_match_all("/create table .*(.*).*;/ius",$content,$carr);
 $carr=$carr[0];
 foreach($carr as $c)
 {
  @mysql教程_query($c,$link);
 }
 
 //提取insert
 preg_match_all("/insert into .*(.*);/ius",$content,$iarr);
 $iarr=$iarr[0];
 //插入数据
 foreach($iarr as $c)
 {
  @mysql_query($c,$link);
 }

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template