x
 
<!DOCTYPE html>
<html>
<body>
<p>反斜杠后跟三个整数将生成一个八进制值:</p>
<?php
$x = "\110\145\154\154\157";
echo $x;
?> 
</body>
</html>