完美的 MySQL 扩展代码示例
本题的目标是使用 MySQL 扩展提供简洁且安全的 PHP 代码示例。代码应避免与 mysql_* 函数相关的常见错误,包括:
代码示例:
<?php header('Content-type: text/html; charset=utf-8'); error_reporting(E_ALL | E_STRICT); ini_set('display_errors', 1); $config = [ 'host' => '127.0.0.1', 'user' => 'my_user', 'pass' => 'my_pass', 'db' => 'my_database' ]; $connection = @mysql_connect($config['host'], $config['user'], $config['pass']); if (!$connection) { trigger_error('Unable to connect to database: ' . mysql_error(), E_USER_ERROR); } if (!mysql_select_db($config['db'])) { trigger_error('Unable to select db: ' . mysql_error(), E_USER_ERROR); } if (!mysql_set_charset('utf8')) { trigger_error('Unable to set charset for db connection: ' . mysql_error(), E_USER_ERROR); } $result = mysql_query( 'UPDATE tablename SET name = "' . mysql_real_escape_string($_POST['name']) . '" WHERE id = "' . mysql_real_escape_string($_POST['id']) . '"' ); if ($result) { echo htmlentities($_POST['name'], ENT_COMPAT, 'utf-8') . ' updated.'; } else { trigger_error('Unable to update db: ' . mysql_error(), E_USER_ERROR); } ?>
说明:
请注意,此代码示例仅供参考,不应被视为适用于所有 PHP 应用程序的完整解决方案。建议对现代 MySQL 应用程序使用 PDO 扩展,因为它提供增强的安全性和性能。
以上是如何使用 PHP 中的 MySQLi 扩展安全地更新 MySQL 数据库?的详细内容。更多信息请关注PHP中文网其他相关文章!