php面向对象补充

Posted 壹路桐行丨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php面向对象补充相关的知识,希望对你有一定的参考价值。

面向对象补充

__tostring的方法

class Ren{
    public $name;
    public function __tostring(){
        return "这是人类,有成员变量name代表名称";
    }
}
$r = new Ren();
echo $r;

自动调用tostring方法。

 

克隆对象的方法

class Ren{
    public $name;
    
    public function __tostring(){
        return "这是Ren类,有成员变量name代表名称";
    }
    //当克隆对象的时候,自动调用
    public function __clone(){
        $this->name = "李四"; //$this代表复本
    }
}
$r = new Ren();
$r->name = "张三";
//echo $r; //自动调用tostring方法
var_dump($r);

$r1 = clone $r;
var_dump($r1);

 

加载类

include("./Test.class.php");
include "./Test.class.php";
include_once("./Test.class.php");
include_once "./Test.class.php";

require("./Test.class.php");
require "./Test.class.php";
require_once("./Test.class.php");
require_once "./Test.class.php";

自动加载类
1.类名必须和文件名保持一致
2.所有类的命名规则一致
3.所有类必须在同一个文件夹下

function __autoload($cname){
    require_once "./{$cname}.class.php";
}

$t = new Test();
$t->ceshi();
$r = new Ren();
$r->test();

 




































以上是关于php面向对象补充的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程

PHP面向对象之领域模型+数据映射器

面向切面编程AOP是面向对象编程OOP的补充

JAVA 面向对象补充[toString方法和equals方法]

面向对象特征