Casting如何在PHP中工作?
作者:互联网
这不起作用:
(int)08 == (int)09==0
但这和这个有关系吗?
(int)07==7
(int)06==6
解决方法:
08是八进制的(因为它以0开头),因此它是无效的. See the documentation.
标签:php,casting,integer,octal 来源: https://codeday.me/bug/20190711/1435833.html
作者:互联网
这不起作用:
(int)08 == (int)09==0
但这和这个有关系吗?
(int)07==7
(int)06==6
解决方法:
08是八进制的(因为它以0开头),因此它是无效的. See the documentation.
标签:php,casting,integer,octal 来源: https://codeday.me/bug/20190711/1435833.html