摘要: <?php class Student{ public $name; protected $sex; private $add; public function __construct($name,$sex,$add) { $this->name = $name; $this->sex = $sex 阅读全文
posted @ 2021-08-24 14:45 树之下 阅读(39) 评论(0) 推荐(0)
摘要: <?php namespace China\Beijing\shunyi; function getInfo(){ echo '顺义...<br>'; } namespace China\Beijing; function getInfo(){ echo '北京...<br>'; } getInfo 阅读全文
posted @ 2021-08-24 10:48 树之下 阅读(24) 评论(0) 推荐(0)