Last active
September 21, 2019 22:34
-
-
Save Chemaclass/9c88ba796f62f579086bfc444b13acde to your computer and use it in GitHub Desktop.
Docu - Numeric literal separator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$float = 6.674_083e-11; | |
$decimal = 299_792_458; | |
$hexadecimal = 0xCAFE_F00D; | |
$binary = 0b0101_1111; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment