Als u mysql-tabellen wilt importeren tijdens runtime van een php-toepassing, dan ga ik u hier laten zien hoe u eenvoudig mysql-tabellen kunt herstellen met behulp van PHP. Over het algemeen gebruikt u om mysql-database uit PHPMyAdmin te importeren. Het is een van de gemakkelijkste methoden om mysql-database te importeren, maar als u op zoek bent naar een oplossing voor het importeren van een database tijdens de installatie van een php-toepassing zoals wordpress, joomla, drupal enz., Hieronder vindt u de eenvoudige PHP-methode voor mysql-database importeren zonder PHPMyAdmin.
MySql-tabellen importeren met PHP
Gebruik het volgende php-script om mysql-databasetabellen te importeren / herstellen.
<?php // Set database credentials $hostname = 'localhost'; // MySql Host $username = 'root'; // MySql Username $password = 'root'; // MySql Password $dbname = 'dbname'; // MySql Database Name // File Path which need to import $filePath = 'sql_files/mysql_db.sql'; // Connect & select the database $con = new mysqli($hostname, $username, $password, $dbname); // Temporary variable, used to store current query $templine = ''; // Read in entire file $lines = file($filePath); $error = ''; // 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 if(!$con->query($templine)){ $error .= 'Error performing query "<b>' . $templine . '</b>": ' . $db->error . '<br /><br />'; } // Reset temp variable to empty $templine = ''; } } $con->close(); echo !empty($error)?$error:"Import Success"; ?> |