我有一个PHP代码,它将使用csv文件创建一个表到mysql数据库。但是,mysql没有读取某些列标题。 mysql读取查询的唯一时间是我添加反引号(`)。你能帮助我在我的查询中添加反引号吗? :(
这是我的代码:
$file = 'C:\Users\user\Desktop\Sample CSV
Files\672VER.csv';
$table = '`672ver`';
// get structure from csv and insert db
ini_set('auto_detect_line_endings',TRUE);
$handle = fopen($file,'r');
// first row, structure
if ( ($data = fgetcsv($handle) ) === FALSE ) {
echo "Cannot read from csv $file";die();
}
$fields = array();
$field_count = 0;
for($i=0;$i<count($data); $i++) {
$f = strtolower(trim($data[$i]));
if ($f) {
// normalize the field name, strip to 20 chars if too long
$f = substr(preg_replace ('/[^0-9a-z]/', '_', $f), 0, 100);
$field_count++;
$fields[] = $f.' VARCHAR(500)';
}
}
$sqlcreate = "CREATE TABLE $table (" . implode(', ', $fields) . ')';
echo $sqlcreate;
答案 0 :(得分:1)
如果将字段名称括在反引号中,这将阻止它尝试将某些列名解释为保留字...
$fields[] = '`'.$f.'` VARCHAR(500)';
答案 1 :(得分:1)
以这种方式更改循环的最后一行:
$fields[] = '`' . $f . '` VARCHAR(500)';
我希望它运作良好,
答案 2 :(得分:0)
我认为你可以做到
$sqlcreate = "CREATE TABLE $table (`" . implode("`, `", $fields) . "`)";