doutou7549 2016-02-09 11:22
浏览 28
已采纳

如何在PHP中为var编写长数字?

I have a constant with 8 zeros. How write it in var with good readability?

java way:

int number = 100_000_000;

Have PHP something similar?

  • 写回答

1条回答 默认 最新

  • dongzhi6927 2016-02-09 11:24
    关注

    Not the way you expose it. Recently a RFC (request for comments) has been proposed to address a solution to this, but this proposal has been rejected. See https://wiki.php.net/rfc/number_format_separator

    However you still can write it this way : $var = 10e7;

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?