温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

PHP问题 —— The use statement with non-compound name

发布时间:2020-06-23 06:23:00 来源:网络 阅读:1990 作者:tywali 栏目:web开发

1.1  The use statement with non-compound name

1.1.1  现象

调试程序,发现运行如下代码程序就跑飞了:

require_once __DIR__ . '/actions/' . $refectClass . '.php';

1.1.2  原因

因为是在PHPStorm中调试,一开始查看__DIR__变量,发现其一直为xdebug,遂以为是这个问题,网上查找很多资料均没有解决方案。

后来查看错误日志,发现有如下错误信息:

2014-05-12 16:41:53: <E> [php                 ]: The use statement with non-compound name 'CommonUtils' has no effect (D:\ProjectWork\SourceCode\Server\i2goods\protected\components\clientapi\actions\BookEditAction.php:9)

 

打开BookEditAction.php文件,查看第9行代码,发现是:

use CommonUtils

网上查找资料,发现这样的use用法语法错误。

1.1.3  解决

咨询相关开发人员,此代码为垃圾代码,忘记删除,将其删除后就好了。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI