search
HomeBackend DevelopmentPHP TutorialDetailed explanation of examples of anonymous functions and precautions in PHP

This article mainly introduces PHPAnonymous function and Notes in detail. Anonymous functions are introduced in PHP5.3. Friends who want to learn anonymous functions can For reference

php5.3 not only introduces anonymous functions but also has more and better new features. Let’s take a look at PHP anonymous functions and precautions. The specific content is as follows

PHP5.2 Before : autoload, PDO and MySQLi, type constraints
PHP5.2: JSON support
PHP5.3: Deprecated features , anonymous function, new magic method, namespace, late static binding, Heredoc and Nowdoc, const, ternary operation operator, Phar
PHP5.4: Short Open Tag, array abbreviation, Traits, built-in Web server, details modified
PHP5.5: yield, list() used for foreach, details modified
PHP5.6:Constant enhancement, variableFunction parameter, namespace enhancement

Now basically all versions after PHP5.3 are used, but it feels A common phenomenon is that many new features have not been fully popularized after such a long time, and are rarely used in projects.

Look at PHP anonymous functions:

'test' => function(){
  return 'test'
},

The definition of PHP anonymous functions is very simple, which is to assign a value to a variable, but this value is a function.

The above is to use the Yii framework to configure the components file and add a test configuration.

What are PHP anonymous functions?

See the official explanation:

Anonymous functions, are also called closure functions (closures), allowing temporary creation A function with no specified name. The value most commonly used as a callback function argument. Of course, there are other applications as well.

Anonymous function example

<?php
echo preg_replace_callback(&#39;~-([a-z])~&#39;, function ($match) {
 return strtoupper($match[1]);
}, &#39;hello-world&#39;);
// 输出 helloWorld
?>

Closure functions can also be used as the value of variables. PHP will automatically convert such expressions into object instances of the built-in class Closure. The method of assigning a closure object to a variable is the same as the syntax of ordinary variable assignment. A semicolon must be added at the end:

Anonymous function variable assignment example

<?php
$greet = function($name)
{
 printf("Hello %s\r\n", $name);
};
$greet(&#39;World&#39;);
$greet(&#39;PHP&#39;);
?>

The closure can be obtained from Variables are inherited from the parent scope. Any such variables should be passed in using the use language construct.

Inherit variables from the parent scope

<?php
$message = &#39;hello&#39;
// 没有 "use"
$example = function () {
 var_dump($message);
};
echo $example();
// 继承 $message
$example = function () use($message) {
 var_dump($message);
};
echo $example();
// Inherited variable&#39;s value is from when the function
// is defined, not when called
$message = &#39;world&#39;echo $example();
// Reset message
$message = &#39;hello&#39;
// Inherit by-reference
$example = function () use(&$message) {
 var_dump($message);
};
echo $example();
// The changed value in the parent scope
// is reflected inside the function call
$message = &#39;world&#39;echo $example();
// Closures can also accept regular arguments
$example = function ($arg) use($message) {
 var_dump($arg . &#39; &#39; . $message);
};
$example("hello");
?>

Notes on anonymous functions in php

After php5.3, php adds anonymous functions Use, an error occurred when using anonymous today. You cannot declare and use it like a php function. Look at the code in detail

$callback=function(){ 
 return "aa"; 
}; 
echo $callback();

It prints out as aa;

Look at the following example:

echo $callback(); 
$callback=function(){ 
 return "aa"; 
};

An error was reported at this time! $callback is undeclared, but no error will be reported when using functions declared by PHP itself!

function callback(){ 
 return "aa"; 
} 
echo callback(); //aa 
 
echo callback(); //aa 
function callback(){ 
 return "aa"; 
}

Both of these are printed aa;

When using anonymous functions, anonymous functions are used as variables and must be declared in advance. The same is true in js! ! ! ! !

The above is the PHP anonymous functions and precautions introduced to you. I hope it will be helpful to your study.

The above is the detailed content of Detailed explanation of examples of anonymous functions and precautions in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Golang函数的匿名函数应用场景分析Golang函数的匿名函数应用场景分析May 16, 2023 pm 10:51 PM

作为一门现代化的编程语言,Golang(又称Go语言)具有众多强大的特性。其中,匿名函数是Golang的一个非常重要的概念,被广泛应用于各种场景中。在本文中,我们将深入分析Golang函数中匿名函数的应用场景。事件处理器在事件处理器中,匿名函数是一个非常方便和实用的工具。可以通过匿名函数向事件处理器传递自定义的逻辑,比如:funcmain(){bt

Python Lambda表达式:缩写,简洁,强大Python Lambda表达式:缩写,简洁,强大Feb 19, 2024 pm 08:10 PM

pythonLambda表达式是一个强大且灵活的工具,可用于创建简洁、可读且易于使用的代码。它们非常适合快速创建匿名函数,这些函数可以作为参数传递给其他函数或存储在变量中。Lambda表达式的基本语法如下:lambdaarguments:expression例如,以下Lambda表达式将两个数字相加:lambdax,y:x+y这个Lambda表达式可以传递给另一个函数作为参数,如下所示:defsum(x,y):returnx+yresult=sum(lambdax,y:x+y,1,2)在这个例子

如何利用PHP7的匿名函数和闭包实现更加灵活的代码逻辑处理?如何利用PHP7的匿名函数和闭包实现更加灵活的代码逻辑处理?Oct 21, 2023 am 10:21 AM

如何利用PHP7的匿名函数和闭包实现更加灵活的代码逻辑处理?在PHP7之前,我们经常使用函数来封装一段特定的逻辑,然后在代码中调用这些函数来实现特定的功能。然而,有时候我们可能需要在代码中定义一些临时的逻辑块,这些逻辑块没有必要创建一个独立的函数,同时又不想在代码中引入太多的全局变量。PHP7引入了匿名函数和闭包,可以很好地解决这个问题。匿名函数是一种没有名

PHP8.0中的匿名函数PHP8.0中的匿名函数May 14, 2023 am 08:31 AM

PHP8.0是当前最新版本的PHP编程语言。一项重要的更新是对匿名函数的改进和增强。匿名函数(也称为闭包)是一种特殊类型的函数,可以在运行时动态创建并传递给其他函数或存储在变量中。在PHP中,匿名函数对于高级编程和Web开发至关重要。PHP8.0提供了一些新的语法和功能,可以使匿名函数更加灵活和易于使用。其中一些更新如下:函数参数的类型声明在PHP8.0中,

Python Lambda表达式:让编程变得更轻松Python Lambda表达式:让编程变得更轻松Feb 19, 2024 pm 09:54 PM

pythonLambda表达式是一个小的匿名函数,它可以将一个表达式存储在变量中并返回它的值。Lambda表达式通常用于执行简单的任务,这些任务可以通过编写一个单独的函数来完成,但Lambda表达式可以使代码更简洁和易读。Lambda表达式的语法如下:lambdaarguments:expressionarguments是Lambda表达式接收的参数列表,expression是Lambda表达式的体,它包含需要执行的代码。例如,以下Lambda表达式将两个数字相加并返回它们的和:lambdax,

Python Lambda表达式:揭秘匿名函数的强大奥秘Python Lambda表达式:揭秘匿名函数的强大奥秘Feb 24, 2024 am 09:01 AM

python中的Lambda表达式是匿名函数的另一种语法形式。它是一个小型匿名函数,可以在程序中任何地方定义。Lambda表达式由一个参数列表和一个表达式组成,表达式可以是任何有效的Python表达式。Lambda表达式的语法如下:lambdaargument_list:expression例如,下面的Lambda表达式返回两个数字的和:lambdax,y:x+y这个Lambda表达式可以传递给其他函数,例如map()函数:numbers=[1,2,3,4,5]result=map(lambda

如何使用PHP7的匿名函数和闭包实现更加灵活和可复用的代码逻辑?如何使用PHP7的匿名函数和闭包实现更加灵活和可复用的代码逻辑?Oct 24, 2023 am 10:30 AM

如何使用PHP7的匿名函数和闭包实现更加灵活和可复用的代码逻辑?在PHP编程领域中,匿名函数和闭包是非常有价值和强大的工具。PHP7引入了一些新的语言特性,使得使用匿名函数和闭包更加方便和灵活。本文将介绍如何使用PHP7的匿名函数和闭包来实现更加灵活和可复用的代码逻辑,并提供一些具体的代码示例。一、匿名函数匿名函数是一种没有名称的函数。在PHP中,可以将匿名

JavaScript中什么是匿名函数?应用场景浅析JavaScript中什么是匿名函数?应用场景浅析Aug 04, 2022 pm 01:10 PM

匿名函数顾名思义指的是没有名字的函数,在实际开发中使用的频率非常高,也是学好JS的重点。下面本篇文章就来给大家详细介绍一下JavaScript中的匿名函数,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor