详谈PHP面向对象中常用的关键字和魔术方法(2)

<?php //定义一个类“人们” class Person{ var $name; protected $age; protected $sex; static $country="中国"; //声明一个常量 const RUN="走"; //构造方法 function __construct($name,$age,$sex){ $this->name=$name; $this->age=$age; $this->sex=$sex; } function say(){ echo "我的名字:{$this->name},我的年龄:{$this->age},我的性别:{$this->sex}。<br>"; } function __clone(){ $this->name="王五"; $this->age=18; $this->sex="男"; } function __destruct(){ echo $this->name."<br>"; } } $p=new Person("张三",21,"女"); $p->say(); //这并不能叫做克隆对象,因为在析构时只析构一次 /*$p1=$p; $p1->name="李四"; $p1->say();*/ $p1= clone $p; $p1->say(); ?>

__autoload()

注意:其它的魔术方法都是在类中添加起作用,这是唯一一个不在类中添加的方法

只要在页面中使用到一个类,只要用到类名,就会自动将这个类名传给这个参数

<?php function __autoload($className){ include "./test/".$className.".class.php"; } $o=new One; $o->fun1(); $t=new Two; $t->fun2(); $h=new Three; $h->fun3(); ?>

test里的文件

one.class.php

<?php class One{ function fun1(){ echo "The Class One<br>"; } } ?>

two.class.php

<?php class Two{ function fun2(){ echo "The Class Two<br>"; } } ?>

three.class.php

<?php class Three{ function fun3(){ echo "The Class Three<br>"; } } ?>

对象串行化(序列化):将一个对象转为二进制串(对象是存储在内存中的,容易释放)

使用时间:

1.将对象长时间存储在数据库或文件中时

2.将对象在多个PHP文件中传输时

serialize();    参数是一个对象,返回来的就是串行化后的二进制串

unserialize();  参数就是对象的二进制串,返回来的就是新生成的对象

__sleep()

是在序列化时调用的方法

作用:就是可以将一个对象部分串行化

只要这个方法中返回一个数组,数组中有几个成员属性就序列化几个成员属性,如果不加这个方法,则所有成员都被序列化

__wakeup()

是在反序列化时调用的方法

也是对象重新诞生的过程

<?php //定义一个类“人们” class Person{ var $name; protected $age; protected $sex; static $country="中国"; //声明一个常量 const RUN="走"; //构造方法 function __construct($name,$age,$sex){ $this->name=$name; $this->age=$age; $this->sex=$sex; } function say(){ echo "我的名字:{$this->name},我的年龄:{$this->age},我的性别:{$this->sex}。<br>"; } function __clone(){ $this->name="王五"; $this->age=18; $this->sex="男"; } //是在序列化时调用的方法,可以部分串行化对象 function __sleep(){ return array("name","age"); } //是在反序列化时调用的方法,也是对象重新诞生的过程。可以改变里面的值 function __wakeup(){ $this->name="sanzhang"; $this->age=$this->age+1; } function __destruct(){ } } ?>

read.php

<?php require "11.php"; $str=file_get_contents("mess.txt"); $p=unserialize($str); echo $p->say(); ?>

write.php

<?php require "11.php"; $p=new Person("张三",18,"男"); $str=serialize($p); file_put_contents("mess.txt",$str); ?>

以上这篇详谈PHP面向对象中常用的关键字和魔术方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/7d7ff1e62411ccd35a90617b93398f42.html