PHP字符串转整数问题
快速提问:
我有“121”、“9998”等形式的字符串。它们实际上是用单引号括起来的数字。
如何删除这些引号并将它们转换为整数?我正在传递给另一个需要它们为整数的程序。
谢谢。
Quick question:
I have strings in the form of '121', '9998', etc. They are literally numbers surrounded by the single quotes.
How can I remove these quotes and cast them as integers? I'm passing to another program that needs them to be integers.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
trim()
和intval()
:Use
trim()
andintval()
:有几种方法可以做到这一点,但最常见的是:
或者,我的偏好:
由于
$string
有一个单引号,您可以trim()
首先利用其第二个参数。请记住,PHP 是一种弱类型的动态语言。
There are a few ways to do this, but the most common are:
Or, my preference:
Since
$string
has a literal single quote, you cantrim()
it first by taking advantage of its second parameter.Remember that PHP is a weak typed, dynamic language.