6 ways to create objects in PHP
Create object instance:
<?php /** * PHP创建对象的六种方式 */ class Person{ private $name = 'bruce'; public function getName(){ return $this->name; } public static function getObjBySelf(){ return new self(); } //动态延迟绑定,能识别调用者 public static function getObjcByStatic(){ return new static(); } } //Person子类 Teacher class Teacher extends Person{ public static function getObjByParent(){ return new parent(); } } //1、new 类名();创建对象 $obj1 = new Person();//等价于写法 $obj1 = new Person; echo '类名:'.get_class($obj1).'<br>'; echo $obj1->getName().'<hr>'; //2、将类名字符串赋值给一个变量,通过变量创建 $clsName = 'Person'; $obj2 = new $clsName(); echo '类名:'.get_class($obj2).'<br>'; echo $obj2->getName().'<hr>'; //3、通过对象实例创建对象 $obj3 = new $obj2(); echo '类名:'.get_class($obj3).'<br>'; echo $obj3->getName().'<hr>'; //4、通过 new self() //$obj4 = (new $obj3())->getObjBySelf(); $obj4 = Person::getObjBySelf(); echo '类名:'.get_class($obj4).'<br>'; echo $obj4->getName().'<hr>'; //5、通过 new parent() $obj5= Teacher::getObjByParent(); echo '类名:'.get_class($obj5).'<br>'; echo $obj5->getName().'<hr>'; //6、通过 new static(); $obj6 = Person::getObjcByStatic(); echo '类名:'.get_class($obj6).'<br>';//类名:Person echo $obj6->getName().'<hr>'; //bruce //当用子类去调用时候,发现static自动识别当前调用者(静态延迟绑定),返回当前调用者对象 $obj7 = Teacher::getObjcByStatic(); echo '类名:'.get_class($obj7).'<br>';//类名:Teacher echo $obj7->getName().'<hr>';//bruce $obj8 = Person::getObjBySelf(); echo '类名:'.get_class($obj8).'<br>';//类名:Person echo $obj8->getName().'<hr>'; //new self()在子类中调用依旧返回原来父类的绑定 $obj9 = Teacher::getObjBySelf(); echo '类名:'.get_class($obj9).'<br>';//类名:Person echo $obj9->getName().'<hr>';
Run result:
Recommended tutorial: PHP video tutorial
The above is the detailed content of 6 ways to create objects in PHP. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
