PHPWebSocket 中出现意外的 T_STRING

发布于 2024-10-13 19:28:57 字数 497 浏览 3 评论 0原文

我试图使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

地狱即天堂 2024-10-20 19:28:57

我遇到了同样的问题。这就是我解决问题的方法。复制 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.

亣腦蒛氧 2024-10-20 19:28:57

我认为这是你复制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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文