大家好,这里是读取 .sql 文件并将每个查询存储在数组元素中的代码。在我的 .sql 文件中有各种语句,如 CREATE TABLE、DROP、INSERT
$fileLines = file('alltables.sql');
$templine = '';
foreach ($fileLines as $line)
{
// Skip it if it's a comment
if (substr($line, 0, 2) == '--' || $line == '')
continue;
// Add this line to the current segment
$templine .= $line;
// If it has a semicolon at the end, it's the end of the query
if (substr(trim($line), -1, 1) == ';')
{
// Perform the query
$queries[] = $templine;
// Reset temp variable to empty
$templine = '';
}
}
// Here I further process $queries var
它在 Windows 平台下运行良好,但我不确定它是否可以在 linux 服务器上运行,所以我希望您查看代码并让我知道我是否需要更改代码,例如 (\t\r\ 0 \x0B) 来处理不同平台的换行和回车:
$tmp=str_replace("\r\n", "\n", $line);
$tmp=str_replace("\r", "\n", $line);