PHPWebSocket 中出现意外的 T_STRING
我试图使用 phpwebsocket 测试一些 HTML5 WebSocket,但在尝试执行时出现错误服务器脚本:
Nathan-Campos-MacBook-Pro:socket Nathan$ php -q server.php
解析错误:语法错误,/Applications/XAMPP/xamppfiles/htdocs/socket/server.php 第 109 行出现意外的 T_STRING
Nathan-Campos-MacBook-Pro:插座 Nathan$
我应该做什么来纠正错误?
我使用的是 PHP 5.3.3,以下是第 109 行的内容:
socket_close($user->socket);
I was trying to test some HTML5 WebSockets using phpwebsocket, but I got an error while trying to execute the server script:
Nathan-Campos-MacBook-Pro:socket Nathan$ php -q server.php
Parse error: syntax error, unexpected T_STRING in /Applications/XAMPP/xamppfiles/htdocs/socket/server.php on line 109
Nathan-Campos-MacBook-Pro:socket Nathan$
What I should make to correct the error?
I'm using PHP 5.3.3 and here is the content of line 109:
socket_close($user->socket);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了同样的问题。这就是我解决问题的方法。复制 server.php 中的所有代码并将其粘贴到 Eclipse 中,并在其中创建一个 untitle php 文件。然后你可以检查第 109 行,其中有三个额外的点,删除它们并更新你所拥有的内容。我确信这会解决它。
I got the same problem. this is How I solve it. copy all the code in server.php and paste it in Eclipse in which you create a untitle php file. then you can inspect the line 109, where there are three extra dots, remove them and update what you have. i am sure this will solve it.
我认为这是你复制server.php代码时的格式问题。第一次,我从 复制代码编辑器面板,出现了这个问题。所以我从这里制作了一个新副本,并成功运行server.php:)
I think it's the format problem when you copy the server.php code. first time, I copy the code from Editor Panel, this problem was occured. so I had make a new copy from here, and successed to run the server.php :)