gpt4 book ai didi

php - Laravel 5.5 不会使用 PHP 7.4 呈现电子邮件

转载 作者:行者123 更新时间:2023-12-04 08:52:59 25 4
gpt4 key购买 nike

我正在尝试在 Laravel 5.5 中呈现电子邮件,但无论我做什么,在呈现时都会出现以下错误: ErrorException (E_NOTICE) Trying to access array offset on value of type null发生在\vendor\egulias\email-validator\EmailValidator\Parser\Parser.php
我正在运行 php 7.4,我相信该错误不会发生在 php 7.3 上。
网页.php:

Route::get('scratch', function(){
$mail = new Test();
return $mail->render();
});
测试文件
<?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;

class Test extends Mailable
{
use Queueable, SerializesModels;

public $subscription;

/**
* Create a new message instance.
*
* @return void
*/
public function __construct()
{
}

/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('emails.test');
}
}
测试 Blade .php
Hello from world
我认为这一定是 Laravel 5.5 和 PHP 7.4 的问题。我可以更改我的版本,但如果可能的话,我想避免这种情况。升级 Laravel 不适用于此应用程序。

编辑
在这条线上失败 vendor\egulias\email-validator\EmailValidator\Parser\Parser.php
 protected function escaped()
{
$previous = $this->lexer->getPrevious();

if ($previous['type'] === EmailLexer::S_BACKSLASH // here
&&
$this->lexer->token['type'] !== EmailLexer::GENERIC
) {
return true;
}

return false;
}

最佳答案

问题是 egulias/email-validator 2.1.7 有 php 7.4 问题。简单 composer update修复。

关于php - Laravel 5.5 不会使用 PHP 7.4 呈现电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63999891/

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