- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为了从闭包中初始化父作用域中的变量,我可以这样做:
$f = function () use (&$a) {
$a = 1;
};
$f();
$a === 1; // true
我的问题是,这是副作用还是我将来可以依赖的预期行为?我知道我可以在定义闭包之前简单地添加 $a = null
,但是如果有很多变量,这可能会变得很难看。
最佳答案
这是由于引用手册 PHP : What References Do 中的预期行为:
Note:
If you assign, pass, or return an undefined variable by reference, it will get created.
即使在调用函数之前,也会创建变量并将其设置为 NULL
,因为 use
在函数创建时导入变量。在函数定义之前,您会收到一个Notice: Undefined variable: a:
var_dump($a);
$f = function () use (&$a) {
//$a = 1;
};
var_dump($a);
$f();
var_dump($a);
产量:
Notice: Undefined variable: a
NULL
NULL
NULL
关于php - 在闭包中初始化父作用域变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51197295/
我在一个简单的 GTK 应用程序中有两个小部件: extern crate gdk; extern crate gtk; use super::desktop_entry::DesktopEntry;
我想做这样的事情: const vegetableColors = {corn: 'yellow', peas: 'green'}; const {*} = vegetableColors; cons
该属性它存储在 gradle 中的什么位置? subprojects { println it.class.name // DefaultProject_Decorated depen
我想在 jQuery 闭包中看到窗口属性“otherName”描述符。但 进入 jQuery 闭包 'otherName' 描述符显示未定义,我认为可能 是 getOwnPropertyDescrip
我曾经看过 Douglas Crockford 的一次演讲,在 javascript 的上下文中,他提到将 secret 存储在闭包中可能很有用。 我想这可以在 Java 中像这样天真地实现: pub
我很难理解 Swift 中闭包中真正发生的事情,希望有人能帮助我理解。 class MyClass { func printWhatever(words: String) {
我有两个 3 表:用户、个人资料、friend_request $my_profile_id变量存储用户个人资料ID的值 $my_user_id = Auth::user()->id; $my_pro
我正在尝试通过使用 GLFW 的包装来学习 Swift GLFW 允许添加错误回调: GLFWAPI GLFWerrorfun glfwSetErrorCallback(GLFWerrorfun cb
我是一名优秀的程序员,十分优秀!