I have seen someone recently write million in the following way:
$myNumber = 1_000_000;
When I tried to use this in my PHP code I got the error:
Parse error: syntax error, unexpected '_000_000' (T_STRING), expecting ')' in /in/2MYCH on line 3
What is this notation?