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 的值的数组偏移量&
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01