首页 > 编程语言 >php 动态调用方法

php 动态调用方法

时间:2022-11-16 18:04:37浏览次数:60  
标签:instanceMethod 调用 searchType searchName searchActionArr result php 动态

$searchActionArr = [
  '1' => 'searchAlbumList',
  '2' => 'searchUser',
  '3' => 'searchActivityList',
];
if(filled($searchActionArr[$searchType]) && method_exists($this,$searchActionArr[$searchType])){
  $instanceMethod = $searchActionArr[$searchType];
  $result = $this->$instanceMethod($searchName);
  result = $this->{$searchActionArr[$searchType]}($searchName);
}

或 使用“{}”,参考在php中{}的作用 

if(filled($searchActionArr[$searchType]) && method_exists($this,$searchActionArr[$searchType])){
  result = $this->{$searchActionArr[$searchType]}($searchName);
}

 

标签:instanceMethod,调用,searchType,searchName,searchActionArr,result,php,动态
From: https://www.cnblogs.com/chihuobao/p/16896829.html

相关文章

  • 剑指offer——Day10动态规划(中等)
    Day102022.11.16动态规划(中等)46.把数字翻译成字符串自己实现想到每种数字组成会很复杂,就放弃了,其实题目已经说了是两位数的组合,就还好。题解动态规划。首先,动态规划......
  • 动态规划总结
    树形DP一、在u的子树中,选择一个大小恰好为m的包含u点的连通块,最大的权值和(u,m<=2e3)这样写虽然是三重循环但是时间复杂度是O(nm)的 voiddfs(intu){sz[......
  • mvc视图类中向Js传递动态参数
     使用APS.NET MVC编写页面,在Html中为javascript函数传入的参数为动态数据时,要注意将动态参数放在引号中,如下面代码中@item.FeeDeptName。@foreach(variteminModel......
  • c++调用python
    cmakelistscmake_minimum_required(VERSION3.20)project(python_test)set(PYTHON_INCLUDE_DIRS"/home/ubuntu/miniconda3/envs/python38/include/python3.8")INCLUD......
  • springboot openfeign服务端与客户端调用演示demo
    文章目录​​serverdemo演示​​​​创建server项目​​​​application.properties配置​​​​importjar[pom.xml]​​​​创建服务端的restfulcontroller​​​​验......
  • mybatis Sql动态问题集合
    where和if搭配: where其实就是表示sql语句中where的用法;where包围后,就不用在sql语句中加where了; if语句的语法结构:<iftest=""></if>其中的test就是判断......
  • 单元测试 request_mock模拟网络调用
    importunittestfromunittestimportmockfromrequests.exceptionsimportConnectionErrorimportrequests_mockimportrequestsclassMyBugzilla:def__......
  • Vue3的setup在el-tab中动态加载组件
    公司某项目需求在页面显示的组件是根据角色变化而变化的,在这个项目中我使用了elementplus的el-tabs来动态的显示这些组件,如下图所示数据内容大概是这样的在未使用setup......
  • ASP.NET 调用Excel模版,导出Excel文件
    --引用命名空间usingSystem.Configuration;usingSystem.Data.OleDb;usingSystem.Data.SqlClient;///<summary>///导出正式Excel文件,用于导入盘点数据......
  • 动态规划详解
    <spanstyle="font-family:Tahoma;background-color:rgb(255,255,255);">其实根本就谈不上详解,应该说只是随便谈谈,真正能详解动态规划的又有几个人,所以,这个标题......