教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php导入数据到mysql实现代码

php导入数据到mysql实现代码

发布时间:2018-03-12   编辑:jiaochengji.com
分享一例php将数据导入到mysql数据库的代码,学习下php数据导入的方法,导入mysql数据的实例参考,有需要的朋友可以看看。

通常在制作安装程式,数据备份程序时会用到如下代码。
从stackoverflow转了一个过来,php把数据导入到mysql数据库中。

代码:
 

复制代码 代码示例:

<?php
// name of the file
$filename = 'churc.sql';
// mysql host
$mysql_host = 'localhost';
// mysql username
$mysql_username = 'root';
// mysql password
$mysql_password = '';
// database name
$mysql_database = 'dump';

// connect to mysql server
mysql_connect($mysql_host, $mysql_username, $mysql_password) or die('error connecting to mysql server: ' . mysql_error());
// select database
mysql_select_db($mysql_database) or die('error selecting mysql database: ' . mysql_error());

// temporary variable, used to store current query
$templine = '';
// read in entire file
$lines = file($filename);
// loop through each line
foreach ($lines as $line)
{
// skip it if it's a comment (脚本学堂 www.jbxue.com 编辑整理)
if (substr($line, 0, 2) == '--' || $line == '')
    continue;

// add this line to the current segment
$templine .= $line;
// if it has a semicolon at the end, it's the end of the query
if (substr(trim($line), -1, 1) == ';')
{
    // perform the query
    mysql_query($templine) or print('error performing query \'<strong>' . $templine . '\': ' . mysql_error() . '<br /><br />');
    // reset temp variable to empty
    $templine = '';
}
}
 echo "tables imported successfully";
?>

您可能感兴趣的文章:
php导入数据到mysql实现代码
php导入大量数据到mysql(示例)
mysql命令行导出数据库方法详解
mysql mysqldump数据库备份与还原
php 导入sql到mysql数据库方法解析
mysql中导入较大数据简单实现代码
mysql导入导出数据时中文乱码的解决办法
将文本导入到mysql数据库的php代码
linux控制台导入mysql数据库的方法
导出mysql所有用户权限的shell脚本

[关闭]
~ ~