私は次のように Google ジオロケーション サービスを呼び出します。
$querystring = "http://maps.googleapis.com/maps/api/geocode/json?sensor=false&latlng=".$row['lat'].",".$row['lng'];
$context = stream_context_create(array(
'http' => array(
'timeout' => 10
)
));
$f = file_get_contents($querystring, 0, $context);
$f = json_decode($f);
if(!isset($f->status) || $f->status != 'OK') continue;
$f = $f->results[0];
$location = $f->formatted_address;
次に、場所をデータベースに挿入します。
//add the location to the database
$sql = "INSERT INTO `wp_postmeta`
(`meta_id`, `post_id`, `meta_key`, `meta_value`)
VALUES
(
NULL,
'".intval($row['ID'])."',
'location',
'".mysql_real_escape_string($location)."'
)";
if($location) $insert = mysql_query($sql);
問題: wordpress の投稿を編集すると、一部の文字が正しく表示されません。たとえば、「R. Hilário Riberio, 41-243 - Praça da Bandeira, Rio de Janeiro, 20270-180, Brazil」のように、「R. Hilário Riberio, 41-243 - Praça da Bandeira, Rio de Janeiro 、20270-180、ブラジル」
Webサイトの文字エンコーディングはUTF-8を使用しています。しかし、それは関係ありません.phpMyAdminは、データが壊れた文字でデータベースに入力されていることを示しているからです.
正しい文字エンコーディングを設定するにはどうすればよいですか?