Blogger Information
Blog 39
fans 1
comment 0
visits 62271
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
A non well formed numeric value encountered
Dai的博客
Original
3963 people have browsed it

在我们有时候输出时间的时候、会报错:

A non well formed numeric value encountered

这时出现的问题很可能就是从数据库读取出来的数据格式不正确、这时只要你把数据格式 强制类型转换一下就OK了

例如我出现 的问题:

出错代码:

<td>{:date('Y-m-d',$vo['create_time'])}</td>

修改后的代码:

<td>{:date('Y-m-d',((int)$vo[create_time']))}</td>

用强制类型转换一下就OK 了,就是这么简单

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post