我有一个带有以下数据的文件“ exmple.dat”。
config.properties.local
我想将此数据存储到mysql表“ scheduler”中。我使用file_get_contents()读取了内容,但是如何将这些内容插入带有sid,date,time和stat列的调度程序表中?
1 2018-09-06 16:29:18 1
2 2018-09-06 16:36:03 1
3 2018-09-06 16:36:11 1
4 2018-09-06 16:36:58 1
5 2018-09-06 16:37:56 1
6 2018-09-06 16:38:14 1
7 2018-09-06 16:43:53 1
答案 0 :(得分:1)
我做了一个小脚本,他读取文件并解析每一行并获取所有数据。之后,将其插入MySQL数据库。
<?php
$handle = fopen("exmple.dat", "r");
if ($handle) {
$con = new mysqli($db_hostname, $db_username, $db_password, $db_databasename);
while (($line = fgets($handle)) !== false) {
// process the line read.
$line_exp = explode(" ", $line);
$sid = $line_exp[0];
$date = $line_exp[3];
$time = $line_exp[4];
$stat = $line_exp[5];
$stmt = $con->prepare("INSERT INTO `scheduler` (`sid`, `date`, `time`, `stat`) VALUES (?,?,?,?)");
$stmt->bind_param("ssss", $sid, $date, $time, $stat);
$stmt->execute();
}
$stmt->close();
fclose($handle);
} else {
// error opening the file.
}