Correction status:qualified
Teacher's comments:
定义第一个类脚本:demo1.php
namespace 0508/Demo1; class Demo1{ public $name = 'demo1'; public function tell($name){ return '我是'.$name.'的命名空间'; } }
点击 "运行实例" 按钮查看在线实例
定义第一个类脚本:demo2.php
namespace 0508/Demo2; use 0508/Demo1; class Demo2{ public function tell(){ return '我在调用Demo1命名空间的方法'.'<br>.Demo1::tell(); } } $demo = new Demo2; echo $demo->tell();
点击 "运行实例" 按钮查看在线实例
输出:
我在调用Demo1命名空间的方法
我是Demo1的命名空间