Blogger Information
Blog 61
fans 0
comment 0
visits 53936
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
类空间的别名导入
笑颜常开的博客
Original
772 people have browsed it

<?php
/**
* Created by PhpStorm.
* User: 廖广
* Date: 2019/4/4
* Time: 21:09
*/
namespace current;
include 'inc/Class1.php';
$obj=new \code\inc\Class1();
//$obj=new Class1();
echo get_class($obj).'<br>';
echo '<hr>';


//use \code\inc\Class1 as C1;
use code\inc\Class1 as C1;
$obj=new C1;
echo get_class($obj).'<br>';
//类空间的别名导入

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