PHP Closure類的使用方法及介紹

來源:互聯網
上載者:User
本篇文章主要介紹PHP Closure類的使用方法,感興趣的朋友參考下,希望對大家有所協助。

Closure,匿名函數,又稱為Anonymous functions,是php5.3的時候引入的。匿名函數就是沒有定義名字的函數。這點牢牢記住就能理解匿名函數的定義了。

Closure 類(PHP 5 >= 5.3.0)簡介 用於代表 匿名函數 的類. 匿名函數(在 PHP 5.3 中被引入)會產生這個類型的對象,下面我們來看一下PHP Closure類的使用方法及介紹。

PHP Closure類之前在PHP預定義介面中介紹過,但它可不是interface哦,它是一個內部的final類。Closure類是用來表示匿名函數的,所有的匿名函數都是Closure類的執行個體。

$func = function() {  echo 'func called';};var_dump($func); //class Closure#1 (0) { }$reflect =new ReflectionClass('Closure');var_dump(  $reflect->isInterface(), //false  $reflect->isFinal(), //true  $reflect->isInternal() //true);

Closure類結構如下:

Closure::__construct — 用于禁止執行個體化的建構函式
Closure::bind — 複製一個閉包,綁定指定的$this對象和類範圍。
Closure::bindTo — 複製當前閉包對象,綁定指定的$this對象和類範圍。

看一個綁定$this對象和範圍的例子:

class Lang{  private $name = 'php';}$closure = function () {  return $this->name;};$bind_closure = Closure::bind($closure, new Lang(), 'Lang');echo $bind_closure(); //php

另外,PHP使用魔術方法__invoke()可以使類變成閉包:

class Invoker {  public function __invoke() {return __METHOD__;}}$obj = new Invoker;echo $obj(); //Invoker::__invoke

總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。

相關推薦:

PHP+Mysql+jQuery統計當前線上使用者數

php實現數字格式化,數字每三位加逗號的功能函數

PHP中文豎排轉換程式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.