Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何准备 Cyrillic 和其他变量以存储到 MySql DB 中?(PHP)
所以我需要非常简单的方法来准备从浏览器$_GET[string]变量中接收以存储到数据库中。
$_GET[string]
怎么做这样的事情?
您根本不需要对字符串进行任何修改。但是您需要确保您的数据库和表编码设置为 utf8。通常它们默认为 latin1。
此外,稍后从数据库中提取数据时,您需要在进行任何其他查询之前将连接编码设置为 utf8。您可以通过执行查询来做到这一点:
SET NAMES utf8;