皮蛋 的个人博客 / 0 / 0 / 创建于 4年前
$a = [1,2,3,4,5,6]; $target = 3; array_map(function ($item) use ($target) { if ($target == $item) echo 'hello!'; }, $a); $a_f = function () use ($target) { if($target == 3) echo 'world'; }; $a_f();
本作品采用《CC 协议》,转载必须注明作者和本文链接
我要举报该,理由是:
推荐文章: