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 中存储“€"符号?
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01