跳转到主要内容
你行网

Main navigation

  • 首页
  • Drupal
  • 编程与开发
  • 数据库
  • 操作系统与应用
  • 服务器与运维
  • 社区
User account menu
  • 登录

面包屑

  1. 首页

php 用户自定义回调函数实例

由 hrs, 1 十一月, 2025

这是一个用户自定义回调函数的实例

首先建立两个函数exclaim 和ask  函数对变量$str  进行加工处理,一个给字符串添加感叹号,一个给字符串添加问号

再建立一个函数printformatted   ,设置两个变量$str ,$format,来接收printformatted函数值,再返回给exclaim 和ask 函数进行加工处理,然后再进行输出。

  1 <!DOCTYPE html>
  2 <html>
  3     <body>
  4 
  5 <?php
  6 
  7 function exclaim($str){
  8 
  9 return $str ."!";  // 对字符串进行加感叹号
 10 
 11 }
 12 
 13 function ask($str){
 14 
 15     return $str ."?";  // 对字符串进行加问号
 16 
 17 }
 18 
 19 function printformatted($str,$format){
 20     //调用$format 回调函数
 21     echo $format($str);
 22 }
 23 printformatted("hello word","exclaim");
 24 echo "<br>";
 25 printformatted("hello word","ask");
 26 
 27 ?>
 28 
 29     </body>
 30 </html>

返回结果

hello word!
hello word?
  • 登录或注册以发表评论
  • 28 次浏览
内容类型分类
编程与开发
文章归类
后端开发

文章标签

  • php

评论

最新文章

  • 内容审核通知 content_moderation_notifications 模块简介
  • 调度程序 scheduler 模块简介
  • 工作流当中的草稿,已发布,很好理解,已归档是怎么理解。
  • 你行网 https://www.dwoke.com seo 关键词
  • brew 是什么命令
  • drupal 9 或 drpal 10 国内内容分享模块 Will Nice social share
  • Views Slideshow - Views Vanilla JavaScript Slideshow (VVJS) 简介和安装方法
  • drupal 11 安装statistics 统计模块
  • drupal11 扩展中找不到Statistics模块
  • drupal11 设置中的“总结摘要”和“切边的” 有什么区别

标签云

adsenseAIapacheaptbadblocksbreadcrumbbrewcentoscertbotckeditorcommandcomposercookiecsharpCSScurlC语言DDEVdiffdnsdockerDreamweaverDrupaldrupal 7drupal 8drupal 9drupal10drupal 11drushExcelfirewalldfirmwareflameshotformgimpgitgzipHTMLHTML5httpdhttp验证inputipjavaJavaScriptJavaSrciptkernelKVMLinuxmavenmbstringmod_expires 模块Mysqlnerdtreenetstatnetworknginxnpmpasswordphpphpmyadminphp扩展RFIDRSSselinuxSEOsharesimple_adsensesshsslStatisticssuperfishsurroundtagcloudstitleubuntuuploadprogressvimVPNVUEWireGuardwpsxdebugyoutubeyumzip主题(theme)二进制五笔分类术语压缩解压哈希值声音字段密码工作流快捷键摄影权限果树种植标签优化模块(module)源地址版本号电子秤电脑基础电脑技巧短信验证端口简介算法网站备份网站运营翻译英语表单视图(views)计算机基础赚钱超五类线网线邮件验证重定向重定向,301错误颜色

相关文章

  • php json_encode 函数将编码值转为json格式
  • php 回调函数实例
  • 匿名函数(Anonymous Functions)详解
  • foreach 是 PHP 循环语句使用方法
  • implode() 函数的定义和用法
  • 为什么学习php 会一边学,一边忘
  • 在 PHP 中什么是try
  • PHP数据类型及其作用总结
  • php过滤器的作用和说明
  • php 会话使用方法
RSS源

关于我们

  • 你行网简介
  • 关于我们
  • 版权声明

网站相关

  • 社区论坛
  • 网址导航
  • 网站地图
  • 联系我们

友情链接

  • 英文学习

友情链接2

  • drupal 大学
  • 水滴间
  • 爱码网
  • Apache

友情链接3

  • MySQL
  • php
  • drupalcode

友情链接4

  • Drupal 中国
  • Drupal 老葛
  • 宁浩网
  • drupal 台湾
Copyright © 2019 - 2021 你行网 版权所有  粤ICP备19072650号-1