Removing all decimals in PHP

前端 未结 10 2081
囚心锁ツ
囚心锁ツ 2020-12-16 12:27

get this from my database:

252.587254564

Well i wanna remove the .587254564 and keep the 252, how can i do that?

10条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-16 12:53

    In MySQL you can use:

    select floor(field)
    

    or in PHP you can use:

    floor($value);
    

提交回复
热议问题