HTML形式でPHPを書いていた時
文字化けが起こり、足止めをくらったのでメモ。
HTMLのheadタグの中に以下を書けば解消された。
php
<?php
header('Content-Type: text/html; charset=UTF-8');
?>
<!DOCTYPE html>
<html>
<head>
<title>文字化けを直したい。</title>
</head>
</html>
Go to list of users who liked
More than 5 years have passed since last update.
HTML形式でPHPを書いていた時
文字化けが起こり、足止めをくらったのでメモ。
HTMLのheadタグの中に以下を書けば解消された。
<?php
header('Content-Type: text/html; charset=UTF-8');
?>
<!DOCTYPE html>
<html>
<head>
<title>文字化けを直したい。</title>
</head>
</html>
Register as a new user and use Qiita more conveniently
Go to list of users who liked