How can I store the #39;€#39; symbol in MySQL using PHP?(如何使用 PHP 在 MySQL 中存储“€符号?)
问题描述
我已将 PHP 字符集设置为 utf-8
:
I've set the PHP character set to utf-8
:
header('Content-Type: text/html; charset=utf-8');
我已将 MySQL 中的 currency
列设置为 varchar(1)
并带有 utf8_unicode_ci
归类.
I've set the currency
column in MySQL to varchar(1)
with collation utf8_unicode_ci
.
但是,PHP 中的以下代码:
However, the following code in PHP:
$currency = '€';
$sql = "UPDATE myTable SET currency = '$currency' WHERE user = '$user'";
mysql_query($sql);
在 MySQL 中产生以下字符:
Produces the following character in MySQL:
â
如何让 €
符号正确存储在 MySQL 中?
How can I get the €
symbol to store properly in MySQL?
推荐答案
确保你的脚本文件,包含行的文件
Make sure your script file, the file that contains the line
$currency = '€';
是 UTF-8 编码的.您应该在编辑器或 IDE 的另存为"对话框中提供一个选项来实现该效果.
is encoded UTF-8. You should have an option to that effect in your editor's or IDE's "Save as" dialog.
然后确保您的连接也是 UTF-8 编码的 - 默认情况下是 ISO-8859-1.
Then make sure your connection is UTF-8 encoded as well - it is ISO-8859-1 by default.
连接数据库后,对于mySQL之前 5.0.7:
After connecting to the database, for mySQL before 5.0.7:
mysql_query("SET NAMES utf8");
对于 mySQL 5.0.7 及更新版本:
For mySQL 5.0.7 and newer:
mysql_set_charset("utf8");
这篇关于如何使用 PHP 在 MySQL 中存储“€"符号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 PHP 在 MySQL 中存储“€"符号?
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01