Is it possible to access outer local variable in PHP?(是否可以在 PHP 中访问外部局部变量?)
问题描述
是否可以在 PHP 子函数中访问外部局部变量?
Is it possible to access outer local varialbe in a PHP sub-function?
在下面的代码中,我想访问内部函数栏中的变量 $l
.在栏中将 $l
声明为 global $l
不起作用.
In below code, I want to access variable $l
in inner function bar. Declaring $l
as global $l
in bar doesn't work.
function foo()
{
$l = "xyz";
function bar()
{
echo $l;
}
bar();
}
foo();
推荐答案
你或许可以使用闭包来做到这一点......
You could probably use a Closure, to do just that...
花了一些时间来记住语法,但它看起来像这样:
Edit : took some time to remember the syntax, but here's what it would look like :
function foo()
{
$l = "xyz";
$bar = function () use ($l)
{
var_dump($l);
};
$bar();
}
foo();
而且,运行脚本,你会得到:
And, running the script, you'd get :
$ php temp.php
string(3) "xyz"
一些注意事项:
A couple of note :
- 你必须在函数声明之后放一个
;
! - 你可以通过引用
use
变量,在它的名字前加上一个&
:use (& $l)
- You must put a
;
after the function's declaration ! - You could
use
the variable by reference, with a&
before it's name :use (& $l)
更多信息,作为参考,你可以看看手册中的这个页面:匿名函数
For more informations, as a reference, you can take a look at this page in the manual : Anonymous functions
这篇关于是否可以在 PHP 中访问外部局部变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以在 PHP 中访问外部局部变量?
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01