如何在PHP中打印"不能,不能,不要,......"?

ior*_*ori -2 php

我想打印"我们找不到与您提供的信息相符的电子邮件."

但PHP不会让我.有人知道怎么修这个东西吗 ?

在此输入图像描述

`return Redirect :: route('account-forgot-password')

->with('error','We can't find an email matching the information you provided. You may have entered an email that doesn't exactly match our records. Try again ');`
Run Code Online (Sandbox Code Playgroud)

Nea*_*eat 5

那么你可以将单引号更改为双引号,如下所示:

with("error","We can't find an email matching the information you provided. You may have entered an email that doesn't exactly match our records. Try again ");
Run Code Online (Sandbox Code Playgroud)