The concept and usage of PHP callback functions

墨辰丷
Release: 2023-03-26 10:32:02
Original
1142 people have browsed it

This article mainly introduces the concept and usage of PHP callback function, briefly introduces the concept and principle of callback function, and analyzes the related usage skills of callback function in the form of examples. Friends in need can refer to it

The details are as follows:

1. The concept of callback function

Let’s first look at the callback function in C language: the callback function is a pass function The function called by the pointer. If you pass a function pointer (address) as a parameter to another function, and when this pointer is used to call the function it points to, we say it is a callback function. The callback function is not called directly by the implementer of the function, but is called by another party when a specific event or condition occurs to respond to the event or condition.

The concept of callback functions in other languages ​​is similar, but the implementation mechanisms of callback functions in various languages ​​are different. Generally speaking, the callback function is a function that we define, but it is not directly Instead of calling it through another function, this function calls the callback function by receiving its name and parameters.

2. Implementation of callback function in php

php provides two built-in functions call_user_func()andcall_user_func_array() Provides support for callback functions. The difference between these two functions is that call_user_func_array receives the parameters of the callback function in the form of an array. You can tell by looking at its prototype: mixed call_user_func_array (callable $callback, array$param_arr), it has only two parameters. The number of call_user_func($callback, parameter 1, parameter 2,...) is determined based on the parameters of the callback function.

How to implement callbacks for global functions in scripts, non-static methods that do not use $this in classes, non-static methods that use $this in classes (need to pass in objects), and static methods in classes, as follows is the code that passed the test.

<?php
//普通函数
function f1($arg1,$arg2)
{
  echo __FUNCTION__.&#39;exec,the args is:&#39;.$arg1.&#39; &#39;.$arg2;
  echo "<br/>";
}
//通过call_user_func调用函数f1
call_user_func(&#39;f1&#39;,&#39;han&#39;,&#39;wen&#39;);
  //通过call_user_func_array调用函数
call_user_func_array(&#39;f1&#39;,array(&#39;han&#39;,&#39;wen&#39;));
class A
{
  public $name;
  function show($arg1)
  {
    echo &#39;the arg is:&#39;.$arg1."<br/>";
    echo &#39;my name is:&#39;.$this->name;
    echo "<br/>";
  }
  function show1($arg1,$arg2)
  {
    echo __METHOD__.&#39; exec,the args is:&#39;.$arg1.&#39; &#39;.$arg2."<br/>";
  }
  public static function show2($arg1,$arg2)
  {
    echo __METHOD__.&#39; of class A exec, the args is:&#39;.$arg1.&#39; &#39;.$arg2."<br/>";
  }
}
//调用类中非静态成员函数,该成员函数中有$this调用了对象中的成员
$a = new A;
$a->name = &#39;wen&#39;;
call_user_func_array(array($a,&#39;show&#39;,),array(&#39;han!&#39;));
//调用类中非静态成员函数,没有对象被创建,该成员函数中不能有$this
call_user_func_array(array(&#39;A&#39;,&#39;show1&#39;,),array(&#39;han!&#39;,&#39;wen&#39;));
//调用类中静态成员函数
call_user_func_array(array(&#39;A&#39;,&#39;show2&#39;),array(&#39;argument1&#39;,&#39;argument2&#39;));
Copy after login

Run result:

f1exec,the args is:han wen
f1exec,the args is:han wen
the arg is:han!
my name is:wen
A::show1 exec,the args is:han! wen
A::show2 of class A exec, the args is:argument1 argument2
Copy after login

Related recommendations:

How promise replaces the callback function in the code

Detailed explanation of the use case of JS callback function

Using JS Callback function case description

##

The above is the detailed content of The concept and usage of PHP callback functions. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!