MySQL 中字符串在插入期间以及字符串包含特殊字符 'á' 时的截断
为什么尝试插入 MySQL 表时字符串会被截断?字符串在字符 á
之前被截断。例如,马拉加 - 皇家马德里
在数据库中仅变为M
。
//***
login & select database
//***
$mysqli->query('set names utf8');
$title = $mysqli->real_escape_string('Málaga - Real Madrid');
$mysqli->query("INSERT INTO article (title) VALUES ('$title')");
Why do a string truncate when a try to insert in a MySQL table? The string truncates before the character á
. For instance, Málaga - Real Madrid
becomes only a M
in the database.
//***
login & select database
//***
$mysqli->query('set names utf8');
$title = $mysqli->real_escape_string('Málaga - Real Madrid');
$mysqli->query("INSERT INTO article (title) VALUES ('$title')");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 PHP 在您的字符处分割字符串 á
You can use PHP to split a string at your character á