迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > PHP >

在 PHP 中实现回调函数

作者:迹忆客 最近更新:2023/03/29 浏览次数:

本文将向你展示如何创建一个或多个 callback 函数并使用 PHP 中的不同内置方法、用户定义函数和静态类来执行它们。


在 PHP 中创建一个 callback 函数并使用 call_user_func 执行

我们创建了一个名为 testFunction()callback 函数,并使用 call_user_func() 方法通过将函数名称作为字符串传递给该方法来执行它。

例子:

<?php
    function testFunction() {
        echo "Testing Callback \n";
    }
    // Standard callback
    call_user_func('testFunction');
?>

输出:

Testing Callback

在 PHP 中创建一个 callback 函数并使用 array_map 方法执行

我们使用 array_map 方法执行 callback 函数。这将使用传递给 array_map() 函数的相应数据执行该方法。

例子:

<?php
    function length_callback($item) {
      return strlen($item);
    }
    $strings = ["Kevin Amayi", "Programmer", "Nairobi", "Data Science"];
    $lengths = array_map("length_callback", $strings);
    print_r($lengths);
?>

输出:

Array ( [0] => 11 [1] => 10 [2] => 7 [3] => 12 )

在 PHP 中实现多个回调函数并使用用户定义的函数执行它们

我们将使用名为 testCallBacks() 的用户定义函数执行两个名为 nameagecallback 函数,将函数的名称作为字符串绕过用户定义的函数。

例子:

<?php
function name($str) {
  return $str . " Kevin";
}

function age($str) {
  return $str . " Kevin 23 ";
}

function testCallBacks($str, $format) {
  // Calling the $format callback function
  echo $format($str)."<br>";
}

// Pass "name" and "age" as callback functions to testCallBacks()
testCallBacks(" Hello", "name");
testCallBacks(" Hello", "age");
?>

输出:

Hello Kevin
Hello Kevin 23

在 PHP 中使用 static 类和 call_user_funcstatic 方法实现为 callback 函数

我们将使用 static 方法创建两个 static 类,并使用 call_user_func() 方法将它们作为 callbacks 执行。

<?php
    // Sample Person class
    class Person {
          static function walking() {
              echo "I am moving my feet <br>";
          }
      }
    //child class extends the parent Person class
    class Student extends Person {
      static function walking() {
            echo "student is moving his/her feet <br>";
        }
    }
    // Parent class Static method callbacks
    call_user_func(array('Person', 'walking'));
    call_user_func('Person::walking');

    // Child class Static method callback
    call_user_func(array('Student', 'Student::walking'));
?>

输出:

I am moving my feet
I am moving my feet
student is moving his/her feet

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

如何在 PHP 中获取时间差的分钟数

发布时间:2023/03/29 浏览次数:183 分类:PHP

本文介绍了如何在 PHP 中获取时间差的分钟数,包括 date_diff()函数和数学公式。它包括 date_diff()函数和数学公式。

PHP 中的重定向

发布时间:2023/03/29 浏览次数:136 分类:PHP

本教程演示了如何将用户从页面重定向到 PHP 中的其他页面

PHP 分页

发布时间:2023/03/29 浏览次数:66 分类:PHP

本教程介绍如何在 PHP 中对数据库行进行分页

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便