我有一个 txt 文件 file.txt,内容为“你好,这是测试文件”。我需要阅读这个文件并使用 php 将内容插入数据库中。我试过以下::
$var = file_get_contents('file.txt', true);
$result = mysql_query("INSERT INTO `mytable`.`json_dump` (`json`) VALUES ('$var')", $con);
if ($result) {
echo 'successful';
} else {
echo 'got error';
}
但它显示有错误。怎么解决??