📌  相关文章
📜  ErrorException 未定义索引(laravel 7 数组助手) - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:35.986000             🧑  作者: Mango

代码示例1
use Illuminate\Support\Arr;

$array = ['name' => 'John Doe', 'age' => 17];

$exists = Arr::exists($array, 'name');

// true

$exists = Arr::exists($array, 'salary');

// false