Blogger Information
Blog 1
fans 0
comment 0
visits 1675
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP制作万年历
檬是柠檬的檬的博客
Original
1692 people have browsed it
header('content-type:text/html;charset=utf-8');
/*class Person{
  //下面是人的成员属性
  var $name;  //人的名字
  var $sex;   //人的性别
  var $age;   //人的年龄
  //定义一个构造方法参数为姓名$name,性别$sex和年龄$age
  public function __construct($name,$sex,$age){
    $this->name=$name;
    $this->sex=$sex;
    $this->age=$age;
  }

  //下面是人的成员方法
  public function say(){  //这个人可以说话的方法
      echo "我的名字叫:".$this->name."性别:".$this->sex."我的年龄是:".$this->age."<br>";
  }
  public function run(){  //这个人可以走路的方法
      echo "这个人在走路";
  }
  //这个一个析构函数,在对象销毁前调用
  function __destruct(){
    echo "再见".$this->name.'<br>';
  }
}

//通过构造方法创建3个对象$p1,$p2,$p3,分别传入三个不同的实参为姓名性别和年龄
$p1 = new Person("小明","男",20);
$p2 = new Person("熊","女",30);
$p3 = new Person("向日葵","男",25);
$p1->say();
$p2->say();
$p3->say();*/

class MyObject{
  public $object_name;              //定义名称

  /**
   * 设置名称
   * @param String $name 获取名称
   */
  function setObjectName($name){
     $this->object_name = $name;
  }
  function getObjectName(){
    return $this->object_name;
  }
}
$c_book = new MyObject();
$c_book->setObjectName("计算机图书");
echo $c_book->object_name.'<br>';
echo $c_book->getObjectName();
 ?>


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