我需要使用系统php函数导入数据库

时间:2015-03-10 09:13:44

标签: php mysql xampp

我有一个使用系统函数导出数据库的脚本。

$command = "c:\\xampp\\mysql\\bin\\mysqldump --opt -uuser -ppassword-  --databases movies --result-file=export.php";
system($command);

我需要知道导入数据库的等价物。

我正在使用xampp和windows 8

1 个答案:

答案 0 :(得分:0)

我使用mysqli对象

这样的东西
$sql = file_get_contents('location/of/import.sql');
if($conn->multi_query($sql)){
    while($conn->more_results() and $conn->next_result()){
        ;
    }
};