PHP魔术方法之__invoke()

将对象当作函数来使用时,会自动调用该方法。

class ShowProfile extends Controller
{
public function __invoke($id)
{
return view('user.profile', ['user' => User::findOrFail($id)]);
}
}
Route::get('user/{id}', 'ShowProfile');

PHP 中当尝试以调用函数的方式调用一个对象时,__invoke() 方法会被自动调用。
 
上一篇:Blender 精确建模3D打印注意事项


下一篇:在Activity中设置new出来的TextView属性