Circular references in PHP are a common cause of memory leaks. Circular references occur when objects refer to each other, directly or indirectly. Fortunately, PHP has a garbage collector that can detect and clean up circular references. However, this consumes CPU cycles and may slow down the application.
The garbage collector is triggered when there are 10,000 possible loop objects or arrays in memory and one of them goes out of scope.
If you have a small number of objects that use a lot of memory, garbage collection will never be triggered. You may hit the memory limit even if the memory is used by orphaned objects that the garbage collector is supposed to collect.
This is why you should identify situations that create circular references and avoid them.
Ideally, for web applications, you want to disable the garbage collector and let PHP release all memory after sending the response. But this is dangerous for long-running scripts such as daemons or worker processes, as memory leaks can accumulate over time and slow down the application through frequent calls to the garbage collector.
In this article, we will explore how closures and generators save circular references and how to prevent them.
- About circular references
- Typical example of circular reference
- Use weak references to prevent circular references
- Closures and circular references
- Generators and circular references
- Conclusion
About circular references
Typical example of circular reference
class A { public B $b; public function __construct() { $this->b = new B($this); } } class B { public function __construct(public A $a) {} }
In this example, A and B refer to each other. When you create an instance of A, it creates an instance of B that references A. This creates a circular reference.
To detect circular references, we can manually trigger the garbage collector using gc_collect_cycles()
and read the number of collected references using gc_status()
.
// 创建的对象但未分配给变量 new A(); gc_collect_cycles(); print_r(gc_status());
This will output:
<code>Array ( ... [collected] => 2 ... )</code>
This example shows that the garbage collector has detected and deleted 2 objects with circular references.
You can also use the xdebug_debug_zval()
function to view the number of references to an object.
Use weak references to prevent circular references
When encountering circular references, a simple solution is to use weak references. A weak reference is an object that holds a reference that does not prevent the garbage collector from collecting the object it refers to. In PHP you can create weak references using the WeakReference
class.
This requires some changes to the code. Class B now stores WeakReference
objects instead of A objects. You must access the A object using the WeakReference
object's get()
method.
class A { public B $b; public function __construct() { $this->b = new B($this); } } class B { /** @var WeakReference<a> $a */ public WeakReference $a; public function __construct(A $a) { $this->a = WeakReference::create($a); } }
// 创建的对象但未分配给变量 new A(); gc_collect_cycles(); print_r(gc_status()); // [collected] => 0
In the output you will see that the number of citations collected is now 0.
Tip 1: Use weak references only when necessary to prevent circular references.
Closures and circular references
The concept of closure in PHP is to create a function that can access variables in the parent scope. This can lead to circular references if you're not careful.
class A { public B $b; public function __construct() { $this->b = new B($this); } } class B { public function __construct(public A $a) {} }
In this example, the closure $a->b
refers to a variable $a
in the parent scope. Circular references are easy to spot because the references are unambiguous.
However, the same problem can arise in a more subtle way if you use the shorthand syntax of closures. With arrow functions, the variable $a
is not explicitly referenced in the closure, but it is still captured by reference.
// 创建的对象但未分配给变量 new A(); gc_collect_cycles(); print_r(gc_status());
In this example, the number of references collected is 2, indicating a circular reference.
Reference to $this in closure
Any non-static closure created within a class method will have a reference to the object instance ($this
) even if $this
is not accessed.
<code>Array ( ... [collected] => 2 ... )</code>
This is because $this
references are always captured by reference in closures. It can be accessed using Reflection::getClosureThis()
.
class A { public B $b; public function __construct() { $this->b = new B($this); } } class B { /** @var WeakReference<a> $a */ public WeakReference $a; public function __construct(A $a) { $this->a = WeakReference::create($a); } }
If the closure is created from the global scope or a static method, the $this
reference is null.
Tip 2: If you don’t need
$this
, always usestatic function () {}
orstatic fn () =>
to create a closure.
Generators and circular references
Let’s talk about the reason for this article. I recently discovered something: Generators retain references as long as they are not exhausted.
In this example, the class stores the generator in a property, but the generator has a $this
reference to the object instance.
A generator behaves like a closure and holds a reference to the object instance.
// 创建的对象但未分配给变量 new A(); gc_collect_cycles(); print_r(gc_status()); // [collected] => 0
The class instance is collected by the garbage collector because it has a reference to the generator, which has a reference to the object instance.
Once the generator is exhausted, the reference is released and the object instance is removed from memory.
function createCircularReference() { $a = new stdClass(); $a->b = function () use ($a) { return $a; }; return $a; }
Tip 3: Always exhaust the generator through iteration.
Tip 4: Use static methods or closures to create generators to avoid retaining references to object instances.
Conclusion
Circular references are a common cause of memory leaks in PHP. Even if the garbage collector can detect and clean up circular references, it consumes CPU cycles and may slow down the application. You must detect situations that create such circular references and adjust your code to prevent them. Using weak references can prevent reference cycles, but some simple tips can help you prevent them in the first place:
- If
$this
is not required, usestatic function () {}
orstatic fn () =>
to create a closure. - Always exhaust the generator through iteration.
- Use static methods or closures to create generators to avoid retaining references to object instances.
Read more
- PHP Garbage Collection - Performance Considerations
- What is garbage collection in PHP? How to make the most of it?
- memprof - Memory analyzer for PHP. Help find memory leaks in PHP scripts.
- Xdebug’s built-in analyzer
The above is the detailed content of PHP Closures and Generators can hold circular references. For more information, please follow other related articles on the PHP Chinese website!

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:


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

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
