search
HomeBackend DevelopmentPHP TutorialAnalysis of references and garbage collection in php
Analysis of references and garbage collection in phpSep 04, 2018 pm 05:43 PM
Garbage collectionQuote

The content of this article is about the analysis of references and garbage collection in PHP. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Each PHP variable exists in a variable container called "zval". A zval variable container contains, in addition to the type and value of the variable, two bytes of additional information. The first one is "is_ref", which is a bool value used to identify whether this variable belongs to the reference set. Through this byte, the PHP engine can distinguish ordinary variables from reference variables. Since PHP allows users to use custom references by using &, there is also an internal reference counting mechanism in the zval variable container to optimize memory usage. The second extra byte is "refcount", which is used to indicate the number of variables (also called symbols) pointing to this zval variable container. All symbols exist in a symbol table, where each symbol has a scope (scope), the main script (for example: the script requested through the browser) and each function or method also have a scope.

//Objects in php are passed by reference

is_ref = 0, refcount = 0 zval container will be destroyed at the end of script execution

Quote from the official example

<?php
$a = array( &#39;one&#39; );
$a[] =& $a;
xdebug_debug_zval( &#39;a&#39; );
a: (refcount=2, is_ref=1)=array (
   0 => (refcount=1, is_ref=0)='one',
   1 => (refcount=2, is_ref=1)=...
)

自引用(curcular reference,自己是自己的一个元素)的数组的zval

Executing unset$a will release the memory association between the variable and zval, but the closed loop itself still exists

(refcount=1, is_ref=1)=array (
   0 => (refcount=1, is_ref=0)=&#39;one&#39;,
   1 => (refcount=1, is_ref=1)=...
)

Zvals after removal of array with a circular reference demonstrating the memory leak

But no variables can be manipulated to zval at this time. The container time has become memory garbage and cannot be released.

Recycling mechanism: To put it simply, after executing the script, the remaining Existing variables will be used for all refcount of the overall data -1. If it is reduced to 0, it will be judged as garbage and the memory container will be destroyed.

Related recommendations:

What kind of garbage can be recycled by PHP's garbage collection mechanism? Garbage collection cannot recycle garbage

PHP garbage collection mechanism—basic knowledge of reference counting

The above is the detailed content of Analysis of references and garbage collection in php. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在苹果笔记中使用块引号如何在苹果笔记中使用块引号Oct 12, 2023 pm 11:49 PM

在iOS17和macOSSonoma中,Apple为AppleNotes添加了新的格式选项,包括块引号和新的Monostyle样式。以下是使用它们的方法。借助AppleNotes中的其他格式选项,您现在可以在笔记中添加块引用。块引用格式可以轻松地使用文本左侧的引用栏直观地偏移部分的写作。只需点击/单击“Aa”格式按钮,然后在键入之前或当您在要转换为块引用的行上时选择块引用选项。该选项适用于所有文本类型、样式选项和列表,包括清单。在同一“格式”菜单中,您可以找到新的“单样式”选项。这是对先前“等宽

C++编译错误:未定义的引用,该怎么解决?C++编译错误:未定义的引用,该怎么解决?Aug 21, 2023 pm 08:52 PM

C++是一门广受欢迎的编程语言,但是在使用过程中,经常会出现“未定义的引用”这个编译错误,给程序的开发带来了诸多麻烦。本篇文章将从出错原因和解决方法两个方面,探讨“未定义的引用”错误的解决方法。一、出错原因C++编译器在编译一个源文件时,会将它分为两个阶段:编译阶段和链接阶段。编译阶段将源文件中的源码转换为汇编代码,而链接阶段将不同的源文件合并为一个可执行文

C++ 函数返回引用类型有什么好处?C++ 函数返回引用类型有什么好处?Apr 20, 2024 pm 09:12 PM

C++中的函数返回引用类型的好处包括:性能提升:引用传递避免了对象复制,从而节省了内存和时间。直接修改:调用方可以直接修改返回的引用对象,而无需重新赋值。代码简洁:引用传递简化了代码,无需额外的赋值操作。

PHP中的内存管理和垃圾回收技术PHP中的内存管理和垃圾回收技术May 11, 2023 am 08:33 AM

PHP作为一种广泛使用的脚本语言,为了在运行时保证高效执行,具有独特的内存管理和垃圾回收技术。本文将简单介绍PHP内存管理和垃圾回收的原理和实现方式。一、PHP内存管理的原理PHP的内存管理采用了引用计数(ReferenceCounting)来实现,这种方式是现代化的语言中比较常见的内存管理方式之一。当一个变量被使用时,PHP会为其分配一段内存,并将这段内

如何使用 C++ 引用和指针传参?如何使用 C++ 引用和指针传参?Apr 12, 2024 pm 10:21 PM

C++中引用和指针都是传递函数参数的方法,但有区别。引用是变量的别名,修改引用会修改原始变量,而指针存储变量的地址,修改指针值不会修改原始变量。在选择使用引用还是指针时,需要考虑是否需要修改原始变量、是否需要传递空值和性能考虑等因素。

Java开发中如何避免网络连接泄露?Java开发中如何避免网络连接泄露?Jun 30, 2023 pm 01:33 PM

如何解决Java开发中的网络连接泄露问题随着信息技术的高速发展,网络连接在Java开发中变得越来越重要。然而,Java开发中的网络连接泄露问题也逐渐凸显出来。网络连接泄露会导致系统性能下降、资源浪费以及系统崩溃等问题,因此解决网络连接泄露问题变得至关重要。网络连接泄露是指在Java开发中未正确关闭网络连接,导致连接资源无法释放,从而使系统无法正常工作。解决网

Java开发中如何解决堆内存空间不足问题Java开发中如何解决堆内存空间不足问题Jun 29, 2023 am 11:11 AM

Java作为一门广泛使用的编程语言,由于其自动内存管理机制,特别是垃圾回收机制的存在,使得开发人员无需过多关注内存的分配和释放。然而,在一些特殊情况下,例如处理大数据或者运行复杂的算法时,Java程序可能会遇到堆内存空间不足的问题。本文将讨论如何解决这个问题。一、了解堆内存空间堆内存是Java虚拟机(JVM)中分配给Java程序运行时使用的内存空间。它存储了

深入解析C++中的指针与引用,优化内存使用深入解析C++中的指针与引用,优化内存使用Jun 02, 2024 pm 07:50 PM

通过使用指针和引用,可以优化C++中的内存使用:指针:存储其他变量地址,可指向不同变量,节约内存,但可能产生野指针。引用:别名为另一个变量,始终指向同一个变量,不会产生野指针,适用于函数参数。通过避免不必要的复制、减少内存分配和节省空间,优化内存使用可以提升代码效率和性能。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.