Error quot;Trying to access array offset on value of type nullquot; laravel 5.8.26 Php 7.4.2(错误“试图访问类型为 null 的值的数组偏移量Laravel 5.8.26 PHP 7.4.2)
问题描述
我使用以下功能从管理面板插入/创建新用户:
I use below function for insert/create new user from admin panel:
public function store(Request $request)
{
$this->validate($request, [
'name' => 'required',
'email' => 'required|email|unique:users,email',
'password' => 'required|same:confirm-password'
]);
$input = $request->all();
$input['password'] = Hash::make($input['password']);
User::create($input);
return redirect()->route('admin.pages.users.index')
->with('success','User created successfully');
}
当我提交时出现如下错误:-
when I submit I get error as below :-
尝试访问类型为 null 的值的数组偏移
Trying to access array offset on value of type null
我发现了我的问题.我的问题是电子邮件验证规则.当我删除电子邮件验证插入数据是真的.
I found my problem. my problem is email validation rule. when i remove email validation insert data is true.
我该如何解决这个错误!
How do can i fix this error !
推荐答案
将 Composer.json 中的 PHP 版本更改为 7.4.1 并运行
Change Your Php version in Composer.json to 7.4.1 and run
composer update
这对我有用
这篇关于错误“试图访问类型为 null 的值的数组偏移量"Laravel 5.8.26 PHP 7.4.2的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误“试图访问类型为 null 的值的数组偏移量&
- PHP - if 语句中的倒序 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01