Blogger Information
Blog 25
fans 0
comment 0
visits 15861
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0805作业
杨发国的博客
Original
562 people have browsed it

实例

jz.php

<?php
//namespace one;
spl_autoload_register('myAutoLoad', true, true);
function myAutoLoad($className){
    include "{$className}.php";
}
$space = new space();
echo $space->get();

运行实例 »

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

space.php

实例

<?php
//namespace one\two;
class space
{
    function get()
    {
        echo space::class.'加载成功了';
    }
}

//$space=new space;
//echo $space->get();

运行实例 »

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

Correction status:unqualified

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