Blogger Information
Blog 55
fans 0
comment 0
visits 50463
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP-private私有访问的操作方法
Bean_sproul
Original
5616 people have browsed it

实例

<?php 


class GirlFriend {//定义一个女朋友类
 
 /* 类中的成员{
	
	属性(变量) ---静态描述:姓名、性别、年龄、身高、体重、三维

    方法(函数) ---动态描述:说话、奔跑、可以生孩子、洗碗、}*/

    
    //--------------------------start---------------------------
    
    /*如果不需要特定的修饰,用var来声明成员属性
    如果需要特定的意义,
    public 一个公共的权限声明
    private 一个私有的权限声明
    static 静态的权限声明*/
    
    private $name; //private是访问控制 ,声明为私有的
    
    private $age; 

    private $stature = []; 
    
    //---------------------------end----------------------------
  
  //声明构造方法 函数创建一个新的 SimpleXMLElement 对象。
  public function __construct($name,$age,array $stature)//定死变量按date要求
  {
    /*private 访问符限制的属性仅在当前对象的内部使用*/
    $this->name = $name;
    $this->age = $age;
    $this->stature = $stature;

  }

  //创建一个对外访问公共接口,没有限制不是很安全 
    public function getName(){

         return $this->name;
    }

  //创建一个对外访问公共接口,设置一些条件 
    public function getName1($yourName=''){
    
        if (!empty($yourName) && $yourName == '特别指定人') {
               return $this->name;//返回成员属性
        } else{
               return '非法访问';
        }
    }
}
  
  $girlfriend2 = new GirlFriend('玛利亚',30,[80,50,80]);//实例化类,建立一个新对象并赋值
  echo $girlfriend2->getName();//可以通过公共接口getName 拿到对象属性

  echo '<hr>';
  $girlfriend3 = new GirlFriend('玛利亚',30,[80,50,80]);//实例化类,建立一个新对象并赋值
  echo $girlfriend3->getName1('特别指定人');//可以通过公共接口getName1 且里面的值必须等于$yourName,才能拿到对象属性

?>

运行实例 »

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

Correction status:Uncorrected

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