gpt4 book ai didi

php - 如何在这种 laravel 验证回调中访问外部变量?

转载 作者:行者123 更新时间:2023-12-01 22:24:51 24 4
gpt4 key购买 nike

在下面的函数中,$input['num_opt'] 不能访问 $input

$input = $request->all();

$validator->after(function($validator) {
$num_opt = $input['num_opt'];
if ($this->isValidOpt($num_opt)) {
$validator->errors()->add('num_opt', 'Something is wrong with this field!');
echo 'test';
}
});

在函数内部传递 $input 的最佳做法是什么。

最佳答案

闭包具有use 语言构造来从父作用域传递变量。

function($validator) use ($input) {

关于php - 如何在这种 laravel 验证回调中访问外部变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36440919/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com