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.
我是 php 的新手。我从某个地方得到一个问题。问题是以下代码的输出是什么?
<?php echo 0050; ?>
结果显示 40。我的问题是为什么它显示 40 以及如何显示?我需要有关此的详细信息。什么是0050?
050是 40(以 10 为底)的八进制(以 8 为底)文字。
050
http://php.net/manual/en/language.types.integer.php
0050 是八进制的值,它是一个以 8 为基数的数字系统。打印时,数字首先转换为十进制表示并打印。