我有一个需要导入数据库的文件,但我喜欢一次导入 10 条记录。
例如,我的 .csv 文件中有 100 条记录,因此它第一次运行时将从 0 开始,然后转到 10 并将您的更改为 domain.com/importfile.php/?start=10
这是我使用的代码。
$file = fopen($file, "r");
while (($data = fgetcsv($file, 8000, ",")) !== FALSE) {
$county = new County();
$county->countrycode = $countrycode;
$county->code = trim($data[0]);
$county->var_name = $county->mod_write_check( trim($data[1]) );
$county->name = trim($data[1]);
$county->statecode = trim($data[2]);
$save = $county->save();
}
fclose($file);
我想知道这是否可以做到。