错误“试图访问类型为 null 的值的数组偏移量"Laravel 5.8.26 PHP 7.4.2

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)
本文介绍了错误“试图访问类型为 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

In PHP how can you clear a WSDL cache?(在 PHP 中如何清除 WSDL 缓存?)
failed to open stream: HTTP wrapper does not support writeable connections(无法打开流:HTTP 包装器不支持可写连接)
Stop caching for PHP 5.5.3 in MAMP(在 MAMP 中停止缓存 PHP 5.5.3)
Caching HTTP responses when they are dynamically created by PHP(缓存由 PHP 动态创建的 HTTP 响应)
Memcached vs APC which one should I choose?(Memcached 与 APC 我应该选择哪一个?)
What is causing quot;Unable to allocate memory for poolquot; in PHP?(是什么导致“无法为池分配内存?在 PHP 中?)