欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

紧急求教PHP版本有关问题,12:10了小弟我还没有吃饭呢,各位帮忙!

程序员文章站 2022-06-12 14:59:17
...
紧急求教PHP版本问题,12:10了我还没有吃饭呢,各位帮忙!!
各位好,我在程序中用到了websocket功能,程序本机调试没有报错,但是传到服务就报错了,在网上找了下,说是PHP版一本http://s.yanghao.org/program/viewdetail.php?i=140457
我机器上的PHP版本是5.4的,服务器上的是5.2的,请问PHP5.2中有没有方便取代php5.3的命名空间功能,非常急!
require("lib/SplClassLoader.php");
$classLoader = new SplClassLoader("WebSocket","/lib");
$classLoader->register();
$server = new \WebSocket\Server("124.172.243.71", 8000, false);//这里报错
报错的内容如下
Unexpected character in input: '\' (ASCII=92) state=1 in
版本
------解决方案--------------------
手册上的一段回复
--------------------------------------------------
a dot schaffhirt at sedna-soft dot de02-Feb-2010 06:24

Just in case you wonder what the practical use of the namespace keyword is...

It can explicitly refer to classes from the current namespace regardless of possibly "use"d classes with the same name from other namespaces. However, this does not apply for functions.

Example:

namespace foo;
class Xyz {}
function abc () {}
?>

namespace bar;
class Xyz {}
function abc () {}
?>

namespace bar;
use foo
------解决方案--------------------
Xyz;
use foo
------解决方案--------------------
abc;
new Xyz(); // instantiates \foo\Xyz
new namespace
------解决方案--------------------
Xyz(); // instantiates \bar\Xyz
abc(); // invokes \bar\abc regardless of the second use statement

------解决方案--------------------
foo
------解决方案--------------------
abc(); // it has to be invoked using the fully qualified name
?>

(Sorry, I had to use "
------解决方案--------------------
" instead of "\", as it was always discarded in the preview, except within a comment.)

Hope, this can save someone from some trouble.

Best regards.
----------------------------------------
------解决方案--------------------
PHP5.2中没有命名空间
你可以删去有关“命名空间”的声明部分
退化成普通的类和函数
紧急求教PHP版本有关问题,12:10了小弟我还没有吃饭呢,各位帮忙!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 紧急求教PHP版本有关问题,12:10了小弟我还没有吃饭呢,各位帮忙!
  • 专题推荐