PHP面向对象之private权限控制
时间:2014-06-09 16:40来源: 作者: 点击:
次
?php class human{ public $mood = ; //心情,公有 private $money =500; //钱,私有的 public function getmoney(){ return $this -money; } //定义私有秘密方法 private function secret(){ echo 我那天偷吃了一块糖 ; } //告诉我你的秘密
- <?php
- class human{
-
- public $mood='';
- private $money=500;
-
- public function getmoney(){
- return $this->money;
- }
-
- private function secret(){
-
- echo '我那天偷吃了一块糖';
- }
-
- public function tellme(){
-
- $this->secret();
- }
-
- }
-
- $lisi=new human();
- $lisi->mood='happay';
-
- echo $lisi->mood,'<br />';
-
- echo $lisi->getmoney(),'<br />';
-
-
-
-
-
-
-
- $lisi->tellme();
- ?>
- <?php
- class human{
-
- public $mood='';
- private $money=500;
-
- public function getmoney(){
- return $this->money;
- }
-
- private function secret(){
-
- echo '我那天偷吃了一块糖';
- }
-
- public function tellme(){
-
- $this->secret();
- }
-
- }
-
- $lisi=new human();
- $lisi->mood='happay';
-
- echo $lisi->mood,'<br />';
-
- echo $lisi->getmoney(),'<br />';
-
-
-
-
-
-
-
- $lisi->tellme();
- ?>
(责任编辑:admin) |
------分隔线----------------------------