Blogger Information
Blog 42
fans 0
comment 1
visits 25791
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
导入空间作业-2018年5月11日11:00完成
邵军-山东-84918的博客
Original
553 people have browsed it

补交作业,代码如下:

实例

<?php
namespace a\b
{
    class Demo
    {
      public $name='我是属于a\b空间的内容';

    }
    use a\Demo as Demo1;
    echo '调用a:'.(new Demo1)->name.'<br>';
}
namespace a
{
    class Demo
    {
        public $name='我是属于a空间的内容';
    }
    use a\b\Demo as Demo2;
    echo '调用a\b:'.(new Demo2)->name;

}

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post