如何删除点后的任何数字
我想删除点后的任何数字。示例
$input = '33.892';
$input = '15.274856';
$input = '-3.14';
$input = '5.055';
输出应为 33
、15
、3
和 5
。让我知道。
I want remove any number after point. Example
$input = '33.892';
$input = '15.274856';
$input = '-3.14';
$input = '5.055';
The output should be 33
, 15
, 3
and 5
. Let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
只需将值解析为 int:
快速摘要:
(int)
abs()
Just parse that values to int:
Quick summary:
(int)
abs()
您可能需要使用 floor() 或 round() 带有适当的修饰符。
You may want to use floor() or round() with the proper modifier.
您显然不需要地板,也不需要天花板,所以这正是您所要求的:
享受! :)
You obviously don't want floor, nor ceil, so here is exactly what you asked for:
enjoy ! :)
只需这样做:
Just do like this:
您可以通过以下方式实现此目的:
请注意,您需要至少安装 PHP 5.3.0 版本才能执行此操作。
You could achieve that this way:
Please note that you will need to have at least version 5.3.0 of PHP installed to do this.