我試圖創建一個包含特殊字符的頁面,但是當它顯示給瀏覽器時,它顯示出一些隨機字符。我試圖根據讀的內容將字符設置爲= utf8,但仍然沒有任何反應。例如:El Nino de San Agustin展示El'íinode San Agustin。但是當我在ino之前使用ñ
時,它顯示正常。有沒有其他的方式可以顯示特殊字符,而不用輸入&代字符和其他來顯示符號代碼?顯示符號代碼
<?php
header('Content-Type: text/html; charset=ISO-8859-1');
?>
<html>
<head>
<meta charset="utf8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Test</title>
</head>
<body background="images/flower.jpg">
El ñino de San Agustin
El Ñino de San Agustin</body>
</html>
您是否在'header'中嘗試過'charset = utf-8'?你是用UTF-8字符集文件嗎? – Passerby