PHP和int之间的差异

前端之家收集整理的这篇文章主要介绍了PHP和int之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP中int和integer之间有什么区别吗?

哪个是较新的或更推荐的用途?

$a = (int)"3 euros";
echo $a;  // $a==3

$a = (integer)"3 euros";
echo $a; // $a==3
引用 manual

Converting to integer

To explicitly convert a value to integer,use either the (int) or (integer) casts. …

原文链接:https://www.f2er.com/php/139833.html

猜你在找的PHP相关文章