作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,我正在尝试计算持续时间,但它不起作用
这是我的 Controller 功能:
public function store(Request $request)
{
$pan = New Pan();
$pan->startime = $request->input('startime');
$pan->endtime = $request->input('endtime');
$pan->duration = ($request->input('endtime') - $request->input('startime'));
$pan->save();
return redirect()->route('pan.index');
}
最佳答案
这可能意味着您的endtime
和startime
值是字符串,不能相减。如果它们是格式正确的日期/时间字符串,您应该能够这样做:
$pan->duration = strtotime($request->input('endtime')) - strtotime($request->input('startime'));
函数 strtotime
会将您的字符串转换为整数时间戳,生成的 duration
将以秒为单位。
关于php - A non well-formed numeric value 遇到 laravel time calculate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49135760/
我是一名优秀的程序员,十分优秀!