php 执行操作符输出服务器执行命令乱码转换 iconv
$out = `dir c:`;在windows操作系统下,得到的$out编码为gb2312,得使用iconv转换后才能在utf-8编码下正常显示,否则会出现乱码
<p>
</p>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
</head>
<body>
中文
<?php
header("Content-Type: text/html; charset=UTF-8");
echo "中文";
$out = `dir c:`;
$out = iconv("gb2312", "UTF-8", $out);
echo '<pre>'.$out. '</pre>'; ?>
</body>
</html>
|
请发表评论