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

php中文网
发布: 2016-06-13 11:10:47
原创
765人浏览过

紧急求教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("124124.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
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号