doumi1852 2011-12-23 02:02
浏览 70
已采纳

那么如何在PHP中创建一个全局类名?

I have a class called "user" with a function "createAccount". Within it I like to access another class via PostageApp::mail

But as this class is outside the scope it is not accessible. global seams to work for variables only. So how do I make a class name global?

include_once('../../ext_scripts/postageapp_class.inc');

class user {
  function createAccount(...) {
    global PostageApp;

    [...]

    $result = PostageApp::mail($mailTo, '', 'verify_email', array());
  }
}
  • 写回答

2条回答 默认 最新

  • dsomm80482 2011-12-23 02:07
    关注

    If you are absolutely sure that the class has been defined in an included file, there is only one thing affecting its visibility in another file: I suppose the PostageApp class is in another namespace, as this is the only reason another class could have a different scope in PHP.

    The keyword global is only necessary for global variables. Functions and classes are always accessible in any scope as soon as they have been declared.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部