Laravel change input value(Laravel 更改输入值)
问题描述
在laravel中,我们可以通过Input::get('inputname')
获取输入值.我尝试通过执行此操作来更改值 Input::get('inputname') = "new value";
.但是,我收到错误消息说Can't use function return value in write context
.
In laravel, we can get the input value via Input::get('inputname')
. I try to change the value by doing this Input::get('inputname') = "new value";
. But then, I get the error message saying Can't use function return value in write context
.
我们是否可以更改输入值,以便稍后调用 Input::get('inputname')
时将获得新的修改值?
Is it possible for us change the input value so that when later calling on Input::get('inputname')
will get the new amended value?
谢谢.
推荐答案
您可以使用 Input::merge()
替换单个项目.
You can use Input::merge()
to replace single items.
Input::merge(['inputname' => 'new value']);
或者使用Input::replace()
替换整个输入数组.
Or use Input::replace()
to replace the entire input array.
Input::replace(['inputname' => 'new value']);
这是一个文档链接
这篇关于Laravel 更改输入值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 更改输入值
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01