为了账号安全,请及时绑定邮箱和手机立即绑定

为什么总提示多了个[]

<?php

namespace wh88;

 function sum($a,$b){

 return "{$a} + {$b} =".($a+$b);

 }

 echo sum(2,3);

 echo '<br>';

 //echo call_user_func(要执行的函数,参数1,参数2.。)

 echo call_user_func(__NAMESPACE__.'\sum',3,10);

 echo '<hr>';

 echo call_user_func_array(__NAMESPACE__.'\sum',[30,40]);

 class test

{

public function sum($a,$b){

 return "{$a} + {$b} =".($a+$b);

 }

 }

 $obj=new test();

 echo '<hr>';

echo call_user_func_array([$obj,'sum'],[22,40]);//当使用静态方法时(static),echo call_user_func_array([test::class,'sum'],[22,40]);

//方法重载

class test1

{

public function __call($whl,$qq){

return '跑偏了';

}

}

echo '<hr>';

$obj=new test1();

echo $obj->www(10,100,30);


正在回答

1 回答


没有提示呀

0 回复 有任何疑惑可以回复我~
#1

qq_慕莱坞0064128 提问者

echo call_user_func_array(__NAMESPACE__.'\sum',[30,40]);
2022-09-23 回复 有任何疑惑可以回复我~
#2

qq_慕莱坞0064128 提问者

这个地方提示
2022-09-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么总提示多了个[]

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信