Import mysql dump using php

后端 未结 4 952
北荒
北荒 2021-02-10 14:06

I have mysql dump file. How I can import this file into mysql using php?

4条回答
  •  盖世英雄少女心
    2021-02-10 14:26

    Depends on how big the dump file is, really. A small one can just be added with a sql command. A larger one can be imported with a script.

    A quick search will reveal many pre-made scripts that break down a dump into smaller chunks in order to not overload the server. I have used this one in the past: http://www.ozerov.de/bigdump.php

提交回复
热议问题