使用 PHP 将 .sql 文件导入 MySQL
尝试通过 PHP 代码导入 .sql 文件时,用户可能会遇到以下错误: “导入过程中出现错误。”要解决此问题,应考虑以下步骤:
提供的代码使用已弃用的 mysql_ 扩展。为了获得更稳定的功能,请考虑切换到 mysqli 或 PDO_MySQL 扩展。但是,如果需要使用 mysql_ 扩展,请确保在 PHP 配置中安装并启用它。
此外,给定的代码部分显示输入文件的名称和其他关键信息。为避免潜在的混淆,请始终确保导入文件的路径和名称正确。该文件应位于与脚本相同的目录中,并且可由 PHP 访问。
或者,可以使用更全面的解决方案将 .sql 文件导入 MySQL:
// Name of the file $filename = 'churc.sql'; // MySQL host $mysql_host = 'localhost'; // MySQL username $mysql_username = 'root'; // MySQL password $mysql_password = ''; // Database name $mysql_database = 'dump'; // Connect to MySQL server mysql_connect($mysql_host, $mysql_username, $mysql_password) or die('Error connecting to MySQL server: ' . mysql_error()); // Select database mysql_select_db($mysql_database) or die('Error selecting MySQL database: ' . mysql_error()); // Temporary variable, used to store current query $templine = ''; // Read in entire file $lines = file($filename); // Loop through each line foreach ($lines 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 mysql_query($templine) or print('Error performing query \'<strong>' . $templine . '\': ' . mysql_error() . '<br /><br />'); // Reset temp variable to empty $templine = ''; } } echo "Tables imported successfully";
通过合并通过这些步骤,您可以使用 PHP 高效地将 .sql 文件导入 MySQL 数据库,确保过程顺利且无错误。
以上是如何使用 PHP 排除故障并将 .sql 文件有效导入 MySQL?的详细内容。更多信息请关注PHP中文网其他相关文章!