我有一个使用系统函数导出数据库的脚本。
$command = "c:\\xampp\\mysql\\bin\\mysqldump --opt -uuser -ppassword- --databases movies --result-file=export.php";
system($command);
我需要知道导入数据库的等价物。
我正在使用xampp和windows 8
答案 0 :(得分:0)
我使用mysqli对象
这样的东西$sql = file_get_contents('location/of/import.sql');
if($conn->multi_query($sql)){
while($conn->more_results() and $conn->next_result()){
;
}
};