我正在尝试为 php 运行 spawn-fcgi 脚本,但出现以下错误。
spawn-fcgi -n -d /home/ubuntu/workspace/Gold-Lantern/glPixelServer/php/ -s /tmp/nginx9010.socket -u www-data -f /home/ubuntu/workspace/Gold-Lantern/glPixelServer/php/pixel.php
/home/ubuntu/workspace/Gold-Lantern/glPixelServer/php/pixel.php: 1: Syntax error: newline unexpected
下面是脚本的内容:
<html>
<head>
<title>My First PHP Page</title>
</head>
<body>
<?php
echo "Hello World!";
?>
</body>
</html>