【laravel】call_user_func_array在框架的使用

简介: 【laravel】call_user_func_array在框架的使用

总结:也就是在框架里面我们只能使用call_user_func_array(),要回调的函数必须要返回一个类给他

我这里是在同一个类里面的,所以就用new UserController,如果是调用其他类的回调函数就实例化其他类名称

在之前的我们写原生的时候可以直接使用

image.png屏幕快照 2022-05-13 下午11.54.49.png屏幕快照 2022-05-13 下午11.54.56.png


相关文章
|
5月前
|
Go
Go - 学习 grpc.Dial(target string, opts …DialOption) 的写法
Go - 学习 grpc.Dial(target string, opts …DialOption) 的写法
70 12
|
5月前
|
Go
Go - struct{} 实现 interface{}
Go - struct{} 实现 interface{}
45 9
|
编译器 C语言
__builtin_return_address()函数的使用方法
__builtin_return_address()函数的使用方法
290 1
thinkphp报错Call to undefined method app\index\controller\Index::fetch()
thinkphp报错Call to undefined method app\index\controller\Index::fetch()
190 0
|
测试技术 PHP
PHP:laravel自定义Model报错:$table must not be defined/$table must be string
PHP:laravel自定义Model报错:$table must not be defined/$table must be string
155 0
|
Java Python
Python:对象的生命周期new-init-call-del
Python:对象的生命周期new-init-call-del
81 0
|
JavaScript 数据安全/隐私保护 前端开发
js中return,return true,return false三者的用法及区别
return其实就是return undefined; 1.语法及返回方式 ①返回控制与函数结果         语法为:return 表达式;         语句结果函数的执行,返回调用函数,而且把表达式的值作为函数结果返回出去 ②返回控制无函数结果         语法为:return;         在大多数情况下,为事件处理函数如果让其返回false,可以防止默认的事件行为.
1657 0
|
网络架构
CodeIgniter报错: You must use the "set" method to update an entry
I'm using codeigniter/datamapper to develop an inviocing application and I'm getting an error that i don't understand.
2155 0
|
PHP
【PHP】call_user_func_array() 内置函数
【PHP】call_user_func_array() 内置函数
110 0
【PHP】call_user_func_array() 内置函数
|
Python
Flask - 访问返回字典的接口报错:The view function did not return a valid response. The return type must be a string, tuple, Response instance, or WSGI callable, but it was a dict.
Flask - 访问返回字典的接口报错:The view function did not return a valid response. The return type must be a string, tuple, Response instance, or WSGI callable, but it was a dict.
1553 0
Flask - 访问返回字典的接口报错:The view function did not return a valid response. The return type must be a string, tuple, Response instance, or WSGI callable, but it was a dict.