日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php use闭包参数,php 闭包use的使用

發(fā)布時間:2023/12/10 php 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php use闭包参数,php 闭包use的使用 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

閉包可以從父作用域中繼承變量。 任何此類變量都應該用 use 語言結構傳遞進去。

PHP的閉包即為匿名函數(shù)。

示例如下。

$message = 'hello';

// 繼承 $message

$example = function () use ($message) {

var_dump($message);

};

echo $example(); //hello

// Inherited variable's value is from when the function

// is defined, not when called

//use繼承的變量值是函數(shù)定義時的變量值,而不是調(diào)用時的變量值

$message = 'world';

echo $example(); //hello

// Reset message

$message = 'hello2';

// Inherit by-reference

//通過引用繼承,則可以獲取到變量的變化值。

$example = function () use (&$message) {

var_dump($message);

};

echo $example(); //hello2 引用地址

// The changed value in the parent scope

// is reflected inside the function call

$message = 'world';

echo $example(); //world 引用地址

// Closures can also accept regular arguments

//重新定義閉包

$example = function ($arg) use ($message) {

var_dump($arg . ' ' . $message);

};

$example("hello"); //hello world

總結

以上是生活随笔為你收集整理的php use闭包参数,php 闭包use的使用的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。