码迷,mamicode.com
首页 > 其他好文 > 详细

克隆、加载类

时间:2016-06-07 22:19:45      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:

1、克隆关键词:clone

class Ren
{
public $name;
public $sex;

function __construct($n,$s)  //构造方法,设置初始值
{
$this->name=$n;
$this->sex = $s;
}

function __clone()    //创建克隆方法,即对克隆体进行操作
{
$this->name = "李四"; //this代表的是复本对象
//$that->name = "lisi"; //that代表原本,后来废弃了
}
}

 

$r = new Ren("张三","男");

 

//克隆
$r1 = clone $r;

 

var_dump($r);
var_dump($r1);

 

2、引用类,加载类(7种)

关于根路径:php里面/代表根路径:指该文件所在的磁盘比如:D:/
html里面/代表根路径:指服务器文件夹:www

include("/wamp/www/0607/Ren.class.php"); //include引用过来的类,如果出现错误,会有提示,但仍会运行下面的代码
include "Ren.class.php";

require("Ren.class.php");  //require可引用多次,一般写在文件顶端,如果页面有错误,就会提示错误,停止运行下面的代码
require "Ren.class.php";

require_once("Ren.class.php"); //require_once只引用一次
require_once "Ren.class.php";

自动加载类
1.所有的类文件命名要求使用同一个规则
2.文件名里面必须有类名
3.所有类文件必须在同一个文件夹下

function __autoload($classname)
{
require $classname.".class.php";
}

克隆、加载类

标签:

原文地址:http://www.cnblogs.com/m-m-g-y0416/p/5568353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!