-
php中闭包函数的用法实例
闭包函数是在PHP5.3版本才引入的了,闭包函数也就是匿名函数函数了,这个与js中的匿名函数很像了,下面我们来看看php匿名函数吧.
php闭包函数比如你现在就可以这样使用:
$closure = function($param) { echo $param; };
感觉和js是不是一样的用法了,一些闭包函数实例,代码如下:
- function test(){
- $test='';
- $test=function ($str){
- echo 'test';
- return $str;
- };
- timeout('Y-m-d H:i:s',function ($time){
- //$this->date=time();
- return $time-24*60*60;
- });
- var_dump($test(‘hello word!’));
- }
- function timeout($format,$time){
- echo date($format,$time(time()));
- }
- test();
上例输出:2013-11-19 16:24:56teststring(11) “hello word!”
这样子参数便可以用函数了,条件是,php3.0以后php 4.0以后闭包函数支持$this用法,闭包函数通常被用在preg_match等有callback的函数,代码如下:
- <?php
- class A {
- private static $sfoo = 1;
- private $ifoo = 2;
- }
- $cl1 = static function() {
- return A::$sfoo;
- };
- $cl2 = function() {
- return $this->ifoo;
- };
- $bcl1 = Closure::bind($cl1, null, ‘A’);
- $bcl2 = Closure::bind($cl2, new A(), ‘A’);
- echo $bcl1(), “n”;
- echo $bcl2(), “n”;
- ?>
- //输出
- 1
- 2
bind将类可以在闭包函数中使用,代码如下:
- <?php
- class A1 {
- function __construct($val) {
- $this->val = $val;
- }
- function getClosure() {
- //returns closure bound to this object and scope
- return function() { return $this->val; };
- }//开源代码phpfensi.com
- }
- $ob1 = new A1(1);
- $ob2 = new A1(2);
- $cl = $ob1->getClosure();
- echo $cl(), “n”;
- $cl = $cl->bindTo($ob2);
- echo $cl(), “n”;
- ?>
- //以上例程的输出类似于:
- 1
- 2
bindto在类里可以再次绑定类,代码如下:
- $fn = function(){
- return ++$this->foo; // increase the value
- };
- class Bar{
- private $foo = 1; // initial value
- }
- $bar = new Bar();
- $fn1 = $fn->bindTo($bar, ‘Bar’); // specify class name
- $fn2 = $fn->bindTo($bar, $bar); // or object
- $fn3 = $fn2->bindTo($bar); // or object
- echo $fn1(); // 2
- echo $fn2(); // 3
- echo $fn3(); // 4
在类之外需要绑定类才能用,绑定可以是类名,也可以是对象,绑定过之后可以再次绑定不需要提拱类名或对象.
出处:http://www.phpfensi.com/php/20140913/5507.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式