php object-oriented (OOP) - instantiating objects
$Object name = new Class name();
class Person
{
//The following are the member attributes of the person
var $name; //The person’s name
var $ sex; //The person's gender
var $age; //The person's age
//The following is the person's member method
Function say() { //The method by which this person can speak
Echo "This person is talking";
}
function run() { //How this person can walk
echo "This person is walking";
}
}
$p1=new Person();
$p2=new Person();
$p3= new Person();
?>
$p1=new Person();
This code is the process of generating instance objects through classes. $p1 is the name of the object we instance. Similarly, $ p2, $p3 are also the names of the objects we instantiate. A class can instantiate multiple objects, and each object is independent. The above code is equivalent to the instance of 3 people. There is no connection between each person. It can show that they are all human beings. Each one has his own name, gender and age attributes. Everyone has a way of talking and walking. As long as it is the member attributes and member methods reflected in the class, it is included in the instantiated object. It contains these properties and methods.
Objects in PHP, like integers and floating point types, are also a data class. They are used to store different types of data. They must be loaded into memory for use during runtime. Then the objects in the memory are How is it reflected? Logically speaking, memory is roughly divided into 4 segments, the stack space segment, the heap space segment, the code segment, and the initialized static segment. Different declarations in the program are placed in different memory segments. The stack space segment is used for storage. Data types of the same space length and occupying small space, such as integers 1, 10, 100, 1000, 10000, 100000, etc. occupy the same length of space in the memory, and are all 64 bits and 4 bytes. So where should the data of a data type that has a variable length and takes up a lot of space be placed in that memory segment? Such data is placed in the heap memory. Stack memory can be directly accessed, while heap memory cannot be directly accessed. For our object, it is a large data type and takes up space of a variable length. Therefore, the object is placed in the heap, but the object name is placed in the stack, so that the object can be used through the object name. .
$p1=new Person();
For this code, $p1 is the object name in the stack memory, and new Person() is the real object in the heap memory. Please see the figure below for details:
As you can see from the above picture, $p1=new Person(); the right side of the equal sign is the real object instance. The entity in the heap memory. There are 3 times of new Person() in the above picture, so it will be in the heap. It opens up 3 spaces and generates 3 instance objects. Each object is independent of each other and uses its own space. In PHP, as long as a new keyword appears, an object will be instantiated and placed on the heap. Create your own space inside.
Each instance object in the heap stores attributes. For example, the instance objects in the heap now all store name, gender and age. Each attribute in turn has an address.
$p1=new Person();$p1 on the left side of the equal sign is a reference variable. The first address of the object is assigned to the reference variable "$p1" through the assignment operator "=", so $p1 is the first address of the stored object. The address variable, $p1, is placed in the stack memory. $p1 is equivalent to a pointer pointing to an object in the heap, so we can operate the object through the reference variable $p1. Usually we also call the object reference an object.
The above content is quoted from Brother "Little Fried Peanuts", thank you for sharing.
The above has introduced PHP object-oriented (OOP)-instantiated objects, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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 PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.
