gpt4 book ai didi

php - 如何在 Laravel 或 Php 中手动增加获取的数据值?

转载 作者:行者123 更新时间:2023-11-29 09:34:46 24 4
gpt4 key购买 nike

使用 Laravel 5.8我只想从表中获取 work_order_no 并将其加 1 并将该值存储到另一个变量。

$statement = DB::select('select work_order_no from work_order where id = 1');
//$won = $won_id->work_order_no+1;
$nextId = intval($statement[0])+1;
$won = $nextId;

显示错误 -stdClass 类的对象无法转换为 int

最佳答案

试试这个。

$statement = DB::table('work_order')->select('work_order_no')->where('id',1)->first();
$nextId = intval($statement->work_order_no) + 1;
$won = $nextId;

关于php - 如何在 Laravel 或 Php 中手动增加获取的数据值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57882846/

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