Detailed explanation of shallow copy and deep copy in php
Detailed examples of shallow copy and deep copy in PHP
Foreword:
Recently reviewed the Design Pattern When I saw the design pattern of Prototype Pattern, I noticed that it involves a problem of shallow copying and deep copying. Let me summarize it here and remind myself to pay more attention in the future.
Since PHP5, the newoperator automatically returns a reference. An object variable no longer saves the value of the entire object, but only saves an identifier to access the real object content. When an object is passed as a parameter, returned as a result, or assigned to another variable, the other variable has no reference relationship with the original one, but they both store a copy of the same identifier, which points to the real content of the same object. .
Here is a chestnut:
class Example1 { public $name; public function construct($name) { $this->name = $name; } } $ex1 = new Example('test1');// $ex1->name现在是:test1 $ex2 = $ex1;// $ex2->name现在是:test1 $ex2->name = 'test2';// 这样修改一下之后,$ex1->name与$ex2->name都变为了:test2
Through the above example, you should be able to understand the concept of references between objects, then we continue to go down and provide clone in php Keyword to object copy, let’s use the above class to demonstrate:
$ex1 = new Example('test1');// $ex1->name现在是:test1 $ex2 = clone $ex1;//$ex2->name现在是:test1 $ex2->name = 'test2';//现在$ex1->name还是test1,而$ex2->name是test2
As you can see here, after cloning, $ex1 and $ex2 are two different objects. Have their own variable environment. But it should be noted here that inside these two objects, what is owned is value type data. If what is owned internally is a reference type, then the reference in the new object obtained through cloning still points to the original reference. Here the concepts of shallow copy and deep copy are extended:
Shallow copy: Use clone to copy objects. This kind of copy is called "shallow copy". All of the assigned objects The variables still have the same value as the original object, and all references to other objects still point to the original object.
Deep copy: All variables of the copied object contain the same values as the original object, except those variables that refer to other objects.
The default use of clone is to perform a shallow copy, so how can we perform a deep copy?
Method 1: Use the clone method
public function clone() { $this->obj = new Obj(); }
This method is very intuitive, but it has a very troublesome operation method, that is, when the class contains multiple When referenced, you need to reset them one by one in the clone method. And we also have to deal with some cyclic reference issues. It's very complicated.
Method 2: Use serialization (refrigeration and thawing)
$tmp = serialize($ex1); $ex2 = unserialize($tmp);
The $ex2 obtained at this time is a brand new object. This process is also called in java Perform the "refrigeration" and "thawing" processes.
Serialization is a recursive process. We don’t need to care about how many objects are referenced within the object and how many layers of objects are referenced. We can copy them completely. Method 2 is really pornographic and violent, but I like it very much.
The above is the detailed content of Detailed explanation of shallow copy and deep copy in php. For more information, please follow other related articles on the PHP Chinese website!

Load balancing affects session management, but can be resolved with session replication, session stickiness, and centralized session storage. 1. Session Replication Copy session data between servers. 2. Session stickiness directs user requests to the same server. 3. Centralized session storage uses independent servers such as Redis to store session data to ensure data sharing.

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

Alternatives to PHP sessions include Cookies, Token-based Authentication, Database-based Sessions, and Redis/Memcached. 1.Cookies manage sessions by storing data on the client, which is simple but low in security. 2.Token-based Authentication uses tokens to verify users, which is highly secure but requires additional logic. 3.Database-basedSessions stores data in the database, which has good scalability but may affect performance. 4. Redis/Memcached uses distributed cache to improve performance and scalability, but requires additional matching

Sessionhijacking refers to an attacker impersonating a user by obtaining the user's sessionID. Prevention methods include: 1) encrypting communication using HTTPS; 2) verifying the source of the sessionID; 3) using a secure sessionID generation algorithm; 4) regularly updating the sessionID.

The article discusses PHP, detailing its full form, main uses in web development, comparison with Python and Java, and its ease of learning for beginners.

PHP handles form data using $\_POST and $\_GET superglobals, with security ensured through validation, sanitization, and secure database interactions.

The article compares PHP and ASP.NET, focusing on their suitability for large-scale web applications, performance differences, and security features. Both are viable for large projects, but PHP is open-source and platform-independent, while ASP.NET,

PHP's case sensitivity varies: functions are insensitive, while variables and classes are sensitive. Best practices include consistent naming and using case-insensitive functions for comparisons.


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

SublimeText3 Linux new version
SublimeText3 Linux latest version

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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver CS6
Visual web development tools
