PHP闭包定义与使用简单示例
发布:smiling 来源: PHP粉丝网 添加日期:2021-09-08 10:27:19 浏览: 评论:0
这篇文章主要介绍了PHP闭包定义与使用,结合简单实例形式分析了php闭包的简单定义、使用方法及相关注意事项,需要的朋友可以参考下。
本文实例讲述了PHP闭包定义与使用,分享给大家供大家参考,具体如下:
- <?php
- function getClosure($i)
- {
- $i = $i.'-'.date('H:i:s');
- return function ($param) use ($i) {
- echo "--- param: $param ---\n";
- echo "--- i: $i ---\n";
- };
- }
- $c = getClosure(123);
- $i = 456;
- $c('test');
- sleep(3);
- $c2 = getClosure(123);
- $c2('test');
- $c('test');
- /*
- output:
- --- param: test ---
- --- i: 123-21:36:52 ---
- --- param: test ---
- --- i: 123-21:36:55 ---
- --- param: test ---
- --- i: 123-21:36:52 ---
- */
再来一个实例
- $message = 'hello';
- $example = function() use ($message){
- var_dump($message);
- };
- echo $example();
- //输出hello
- $message = 'world';
- //输出hello 因为继承变量的值的时候是函数定义的时候而不是 函数被调用的时候
- echo $example();
- //重置为hello
- $message = 'hello';
- //此处传引用
- $example = function() use(&$message){
- var_dump($message);
- };
- echo $example();
- //输出hello
- $message = 'world';
- echo $example();
- //此处输出world
- //闭包函数也用于正常的传值
- $message = 'hello';
- $example = function ($data) use ($message){
- return "{$data},{$message}";
- };
- echo $example('world');
- //此处输出world,hello
Tags: PHP闭包定义
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)