Pillow Book
Always be in awe.
Callback functions and anonymous functions in PHP
Foreword
I was so busy at the company some time ago that my head felt heavy when I came home from get off work every day. There are various things going on on Saturdays and Sundays, and I don’t want to start typing, so I have put off blogging. I have a feeling that I won’t be too busy in the near future, so I will start to have time to write, summarize and share my harvest, welcome to follow.
Callback functions and anonymous functions
Callback functions and closures are no strangers to JS. JS can use them to complete the event mechanism and perform many complex operations. It is not commonly used in PHP. Today, let’s talk about callback functions and anonymous functions in PHP.
Callback function
Callback function: Callback (that is, call then back will return to the main function after being called by the main function) refers to a reference to a certain block of executable code that is passed to other codes through function parameters.
The popular explanation is to pass the function as a parameter into another function for use; there are many functions in PHP that "require parameters as functions", such as array_map, usort, call_user_func_array, etc. They execute the passed in function and then directly Return the result to the main function. The advantage is that functions are convenient to use as values, and the code is concise and readable.
Anonymous function:
Anonymous function, as the name suggests, is a function without a determined function name. PHP treats anonymous functions and closures as the same concept (anonymous functions are also called closure functions in PHP). Its usage, of course, can only be used as a variable.
There are four ways to assign a function to a variable in PHP:
We often use: the function is defined externally/or built-in in PHP, and the function name is directly passed in as a string parameter. Note: If it is a class static function, it is passed in as CLASS::FUNC_NAME.
Use create_function($args, $func_code); to create a function, which will return a function name. $func_code is the code body, $args is the parameter string, separated by ',';
Direct assignment: $func_name = function($arg){statement};
Use the anonymous function directly and define the function directly at the parameter. Do not assign specific variable values;
The first method is not mentioned anymore because it is commonly used; the second method, similar to the eval() method, is also officially listed as a deprecated method by PHP, and its definition The method is too unintuitive. I have never used it in other places except for testing, so I will not mention it. Here we focus on the third and fourth usages;
The functions created by the latter two are called anonymous functions, that is, closure functions. The functions created by the third assignment method are very flexible and can be passed through variables. Quote. You can use is_callable($func_name) to test whether this function can be called, or you can call it directly through $func_name($var); the function created in the fourth way is more similar to the callback function in JS and does not require variable assignment. , used directly;
Another special introduction is the use keyword, which can be used to reference variables in the parent scope when defining a function; the usage is function($arg) use($outside_arg) {function_statement}. Among them, $outside_arg is a variable in the parent scope and can be used in function_statement.
This usage is used in the callback function "the number of parameter values is determined". For example, usort requires that the parameter value of $callback be two items, but what if we need to introduce other parameters to affect the sorting? Using the use() keyword, it is very convenient to introduce a new variable into $callback for internal use.
array_map/array_filter/array_walk:
Put these three functions together because the execution logic of these three functions is relatively similar, similar to the following code:
$result = []; foreach($vars as $key=>$val){ $item = callback(); $result[] = $item; } return $result;
array_walk($vars, $callback)
The callback should be as follows:
$callback = function(&$val, $key[, $arg]){ doSomething($val); }
array_walk returns whether the execution is successful, which is a Boolean value. Adding a reference symbol to $value can change the $value value within the function to achieve the effect of changing the $vars array. Since its $callback requires two parameters, array_walk cannot pass in $callbacks such as strtolower/array_filter. If you want to achieve similar functions, you can use array_map() to be discussed next.
array_walk_recursive($arr, $callback);
The return value and execution mechanism are similar to array_walk;
The callback is the same as array_walk, the difference is that if $val is an array, the function will recursively process $val downwards ; It should be noted that in this case, $val is the $key of the array and will be ignored.
array_filter($vars, $callback, $flag);
its $callback is similar to:
$callback = function($var){ return true or false; }
array_filter will filter out items that return false when $callback is executed, and array_filter returns the array after filtering is completed.
The third parameter $flag determines the value of its callback parameter $var, but this may be a feature of higher versions of PHP. My PHP5.5.3 does not support it. You can test it yourself. By default, the value of each item in the array is passed in. When the flag is ARRAY_FILTER_USE_KEY, the key of each item in the array is passed in, and ARRAY_FILTER_USE_BOTH is passed in the key and value;
array_map($callback, &$var_as [,$var_bs...]) ;
its $callback is similar to:
$callback = function($var_a[, $var_b...]){ doSomething($var_a, $var_b); }
返回$var_as经过callback处理后的数组(会改变原数组);如果有多个数组的时候将两个数组同样顺序的项目传入处理,执行次数为参数数组中项目最多的个数;
usort/array_reduce
把这两个函数放在一块,因为他们的执行机制都有些特殊。
usort(&$vars, $callback)
$callback应该如下:
callback = function($left, $right){ $res = compare($left, $right); return $res; }
usort返回执行成功与否,bool值。用户自定义方法 比较$left 和 $right,其中$left和$right是$vars中的任意两项;
$left > $right时返回 正整数, $left
$vars中的元素会被取出会被由小到大升序排序。 想实现降序排列,将$callback的返回值反一下就行了。
array_reduce($vars ,$callable [, mixed $initial = NULL])
$callback应该如下:
$callback = function($initial, $var){ $initial = calculate($initail, $var); return $initial; }
初始值$initial默认为null,返回经过迭代后的initial;一定要将$initial返回,这样才能不停地改变$initial的值,实现迭代的效果。
这里顺便说一下map和reduce的不同:
map:将数组中的成员遍历处理,每次返回处理后的一个值,最后结果值为所有处理后值组成的多项数组;
reduce:遍历数组成员,每次使用数组成员结合初始值处理,并将初始值返回,即使用上一次执行的结果,配合下一次的输入继续产生结果,结果值为一项;
call_user_func/call_user_func_array
call_user_func[_array]($callback, $param)
$callback形如:
$callback = function($param){ $result = statement(); return $result; }
返回值多种,具体看$callback。
可用此函数实现PHP的事件机制,其实并不高深,在判断条件达成,或程序执行到某一步后 call_user_func()就OK了。这个我在之前的博客中也有介绍到:搭建自己的PHP框架心得(二)
总结
其实以上$callback不用单独定义并使用变量引用,使用上面说过的第四种函数定义方式,直接在函数内定义,使用‘完全’匿名函数就行了。 如:
usort($records, function mySortFunc($arg) use ($order){ func_statement; });
是不是逼格满满呢?
OK,介绍了几个用法~希望对大家有帮助,如果有问题,欢迎指出,如果您喜欢,可以点下推荐~

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)
