博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP命名空间带来的干扰
阅读量:6575 次
发布时间:2019-06-24

本文共 1319 字,大约阅读时间需要 4 分钟。

有时候,不想受命名空间约束,就可以整一个全局类。

protected function sendDayuSms($tel,$code,$template_type,$product = "【易商城】") {        if ($template_type == 1) {            $signname = C('dayu_template_register.signname');            $templatecode = C('dayu_template_register.templatecode');        }        if ($template_type == 2) {            $signname = C('dayu_template_alteration.signname');            $templatecode = C('dayu_template_alteration.templatecode');        }        if ($template_type == 3) {            $signname = C('dayu_template_identity.signname');            $templatecode = C('dayu_template_identity.templatecode');        }                require APP_PATH . 'Lib/Taobaosdk/TopSdk.php';        $c = new \TopClient;   // 全局类        $c->appkey = C('dayu_appkey');        $c->secretKey = C('dayu_secretKey');        $req = new \AlibabaAliqinFcSmsNumSendRequest;        $req->setSmsType("normal");        $req->setSmsFreeSignName("{$signname}");        $req->setSmsParam('{"code":"'. $code .'","product":"'. $product .'"}');        $req->setRecNum("{$tel}");        $req->setSmsTemplateCode("{$templatecode}");        $resp = $c->execute($req);        return $resp;}

这里新建类的时候,加一个\就可以实现了。

如果不加斜杠,由于头部有命名空间。

默认就会加上命名空间,然后系统就找不到你想要的类了。

本文转自TBHacker博客园博客,原文链接:http://www.cnblogs.com/jiqing9006/p/5460676.html,如需转载请自行联系原作者

你可能感兴趣的文章
PHP 时间操作 / 跳转问题
查看>>
Windows 2012 R2 FSMO角色相关小记录
查看>>
(小蚂蚁站长吧)网站优化做好这八步你就是seo第一
查看>>
使用流的方式往页面前台输出图片
查看>>
java核心技术反射
查看>>
LAMP,安装脚本
查看>>
DHCP
查看>>
电脑上怎样压缩图片大小
查看>>
新来的发一个帖子
查看>>
lnmp安装
查看>>
FTP工作方式
查看>>
Ubuntu16.04 ssh安及root登录
查看>>
C语言dos程序源代码分享(进制转换器)
查看>>
php项目中常用的log日志记录方法
查看>>
LogParser 导入MSSQL
查看>>
linux安装go环境并编写第一个go程序
查看>>
【在线研讨-现场文字】《敏捷开发用户故事分类与组织结构(二期-3)》2012-07-03...
查看>>
易语言 --什么情况下 用许可证
查看>>
项目总结:凡事预则立,不预则废!
查看>>
建属于自己的网站
查看>>