donglan7594 2010-02-09 15:08
浏览 27
已采纳

如何在PHP中实现嵌套命名空间?

use level1\level2\level3;

Can someone explain with a simple demo ?

  • 写回答

1条回答 默认 最新

  • dongtang3155 2010-02-09 15:17
    关注

    To clear up any confusion regarding different syntax use, namespaces support only two syntaxes, either bracketed or simple-combination both will work. I suggest if you use one over the other, be consistent.

    <?php
    namespace my\stuff
    ested {  // <- bracketed syntax
     class foo {}
    }
    ?>
    

    It creates a class foo inside of the nested namespace with bracketed syntax ({}), it is equivalent to

    <?php
    namespace my\stuff {  // bracketed syntax but with a nested look
      namespace nested {
         class foo {}
      }
    }
    ?>
    

    You can also use nested namespaces with simple-combination syntax (;)

    <?php
    namespace mine;
    use ultra\long
    s
    ame;  // <- simple-combination syntax
    
    $a = name\CONSTANT;
    name\func();
    ?>
    

    PHP: FAQ: things you need to know about namespaces

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化