<html>
<head>
<title>PHP</title>
</head>
<body>
<?php
echo 'hello';
?>
</body>
</html>
更新
<fieldset>
标记问题就会解决。PHPFIDDLE - 运行代码并检查检查元素
答案 0 :(得分:1)
不是答案,但评论时间太长:
请再试一次
<html>
<head>
<title>PHP</title>
</head>
<body>
<?php
function printit($s) {
echo '<fieldset>',
htmlspecialchars(var_export($s)),
'<br />';
for($i=0; $i<strlen($s); $i++) {
printf('%02X ', ord($s[$i]));
}
echo '</fieldset>';
}
printit($_SERVER['REQUEST_URI']);
printit(trim($_SERVER['REQUEST_URI']));
?>
</body>
</html>
并将输出添加到您的问题中。