码迷,mamicode.com
首页 > Web开发 > 详细

PHP and laravel知识点小小积累

时间:2016-04-09 00:20:14      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

function () use ($x, &$y){}

自从PHP5.3开始有了closure/匿名函数的概念,在这里的use关键词的作用是允许匿名函数capture到父函数scope

内存在的$x和$y变量。其中&&y为引用方式capture,也就是说每次该匿名函数调用时,y的值如果

被修改了也反映在这里,而$x则是静态引用。

<?php
$message = "hello\n";


$example = function () {
    echo $message;
};
// Notice: Undefined variable: message
$example();


$example = function () use ($message) {
    echo $message;
};
// "hello"
$example();


// Inherited variable‘s value is from when the function is defined, not when called
$message = "world\n";
// "hello"
$example();


// Inherit by-reference
$message = "hello\n";
$example = function () use (&$message) {
    echo $message;
};
// "hello"
$example();
// The changed value in the parent scope is reflected inside the function call
$message = "world\n";
// "world"
$example();


// Closures can also accept regular arguments
$example = function ($arg) use ($message) {
    echo $arg . ‘ ‘ . $message;
};
// "hello world"
$example("hello");

 

PHP and laravel知识点小小积累

标签:

原文地址:http://www.cnblogs.com/kidsitcn/p/5370369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!