我的db列中有这种值,
Judge-FürstováMila“Ut enim ad minim veniam”
我使用PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"
处理我的所有特殊字符
class database_pdo
{
# database handler
protected $connection = null;
# make a connection
public function __construct($dsn,$username,$password)
{
try
{
$this->connection = new PDO($dsn, $username, $password, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
$this->connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch (PDOException $e)
{
# call the get_error function
$this->get_error($e);
}
}
...
...
...
}
当我尝试在输入字段中打印该值时,
<input name="title" type="text" value="<?php echo $page->title;?>"/>
我只在输入栏中获得 Judge-FürstováMila。
如果我使用htmlentities
修复双引号问题,
<input name="title" type="text" value="<?php echo htmlentities($page->title);?>"/>
我在输入字段中得到了这个,
Judge-FürstováMila“Ut enim ad minim veniam”
那么,如何立即修复此特殊字符和双引号问题?
答案 0 :(得分:3)
htmlentities()默认使用ISO-8869-1编码
尝试向函数调用提供编码参数:
<?php echo htmlentities($page->title, ENT_COMPAT | ENT_HTML401, 'UTF-8');?>
但是,无法绕过提供第二个参数,但无论如何ENT_COMPAT | ENT_HTML401
是默认值。
答案 1 :(得分:2)
尝试使用htmlspecialchars()而不是htmlentities()。