我在 MySQL DB 中有一个字段:
description text utf8_general_ci
我使用 CURL 使用 iso-8859-2 废弃网站,并尝试将值插入 utf8_general_ci 字段。一切都很好,但我失去了角色,即。ęąśćż 等。你们能帮帮我吗?
我通过 PDO 连接到数据库:
$pdo = new PDO('mysql:host=localhost;dbname=xx;charset=utf8', 'xxx', 'xxx');
$pdo -> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
比我准备我的查询:
$stmt1 = $pdo -> prepare('INSERT INTO `jos_djcf_items1` (`cat_id`, `user_id`, `name`, `description`, `intro_desc`, `date_start`, `display`, `published`, `contact`) VALUES(
:cat_id,
:user_id,
:name,
:description,
:intro_desc,
:date_start,
:display,
:published,
:contact)'); // 1
我检查字符集:
$oferta[$j][0]= iconv("iso-8859-2","UTF-8",$nazwa);
$ary[] = "UTF-8";
$ary[] = "iso-8859-2";
$ary[] = "EUC-JP";
echo mb_detect_encoding($oferta[$j][0], $ary);
// it returns: UTF-8
$oferta[$j][1]=iconv("iso-8859-2","UTF-8",$krotkiOpis);
$oferta[$j][2]=iconv("iso-8859-2","UTF-8",$opis);
$oferta[$j][3]=iconv("iso-8859-2","UTF-8",$kontakt);
$oferta[$j][4]=rand(3,40);
比我绑定值并执行查询
$count += $stmt1 -> execute();