listExistsTable(); $data = []; foreach ($tables as $table) { $sql = "desc $table"; $res = sql_query($sql); while ($row = mysql_fetch_assoc($res)) { if ($row['Type'] == 'datetime' && $row['Default'] == '0000-00-00 00:00:00') { $data[$table][] = $row['Field']; $data[] = [ 'label' => "$table." . $row['Field'], 'required' => 'default null', 'current' => '0000-00-00 00:00:00', 'result' => 'NO', ]; } } } return $data; } public function importInitialData($sqlFile = '') { if (empty($sqlFile)) { $sqlFile = ROOT_PATH . '_db/dbstructure_v1.6.sql'; } $string = file_get_contents($sqlFile); $pattern = "/INSERT INTO `(\w+)` VALUES \(.*\);\n/i"; preg_match_all($pattern, $string, $matches, PREG_SET_ORDER); foreach ($matches as $match) { $table = $match[1]; $sql = trim($match[0]); if (!in_array($table, $this->initializeTables)) { continue; } //if table not empty, skip $count = get_row_count($table); if ($count > 0) { $this->doLog("[IMPORT DATA] $table, not empty, skip"); continue; } $this->doLog("[IMPORT DATA] $table, $sql"); sql_query("truncate table $table"); sql_query($sql); } return true; } }