function counter($d=0) {
$counter = 1+$d;
return function() use(&$counter) {return $counter ++;};
}
$a = counter();
echo $a(); //1
echo $a(); //2
问题:
$a = counter(); //返回闭合函数; 函数执行完毕删除所有内部变量;
ref=2? 好吧等于2; 删除一个; 还有一次引用;
函数内部的变量是局域的,内存地址可以公开使用??????????
搞不明白,局部变量的内存地址怎么可以变成全局的;
echo $a(); //1
echo $a(); //2
我不太理解,请详细的回答下;研究了2小时没研究明白;
----------
function aaa() { $a =1; return function() use(&$a) {return $a ++;}; //该$a继承父作用域的$a内存地址; } //首先返回的是一个闭合函数: function() use (&$a) {return $a ++;} //函数嵌套函数,当外层函数执行时,其内部函数变成全局作用域; //闭合函数: 拥有 $a内存的控制权;同时又是全局函数; 有点...... $a = aaa(); //aaa()执行完毕,清空变量,因&引用,ref_count -1 ,不释放内存; echo $a(); //1; echo $a(); //2;
我乱写的,也不知道分析的对不对,请修正指教;
回复讨论(解决方案)
用什么不理解的?
既然你 use( &$counter) 那当然是要知道这么做的后果的,因为那个 & ,规则就发生了变化
既然是引用,就是两个及以上变量指向同一数据区,删除一个,其他的还在
js的闭包挺流行,但貌似php很少...
匿名函数赋给$a后,等价于诞生了一个全局函数,但这不是重点...
use中的$counter如果只是拷贝调用,在$a = $counter();的赋值过后,内存也就释放了
偏偏是指针...所以那块内存在这个匿名函数中留了下来
此时匿名函数中的$counter只属于$a,如果你再令$b = counter();,会有另一个独立的$counter

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.

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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


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

Atom editor mac version download
The most popular open source editor

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),

SublimeText3 Linux new version
SublimeText3 Linux latest version

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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
