Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
确切地说,intval()函数以 10 为底计算的目的是什么?它不是与类型转换完全相同,只是更慢吗?在我所有的谷歌搜索中,我没有发现任何好处。我错过了什么?
intval()
intval()允许您指定要转换的基础。
$decimal_value = intval("FF", 16)
对于简单的 base-10 转换,没有理由使用intval().
intval()可以接受基本参数,但不能转换为 int。