加入收藏 | 设为首页 | 会员中心 | 我要投稿 莱芜站长网 (https://www.0634zz.com/)- 云连接、建站、智能边缘云、设备管理、大数据!
当前位置: 首页 > 编程开发 > PHP > 正文

PHP和int之间的差异

发布时间:2020-07-24 00:33:29 所属栏目:PHP 来源:互联网
导读:在 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,

在 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. …

(编辑:莱芜站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读