我在一个字符串中有 5 个希腊字符。在我在 php 中使用 substr 之后,输出类似于 α�。应该是αβγ。关于编码的任何建议?我试过了
header ('内容类型: text/html; charset=utf-8');
没有结果。
<?php
$string = "αβγδε";
$thedoc = substr($string, 0, 3);
echo $thedoc."<br/>";
?>