Skip to content

Instantly share code, notes, and snippets.

@MehmetGoekce
Created February 9, 2020 13:56
Show Gist options
  • Select an option

  • Save MehmetGoekce/a6b0dbe4478d08bf146ccd53a021e4d1 to your computer and use it in GitHub Desktop.

Select an option

Save MehmetGoekce/a6b0dbe4478d08bf146ccd53a021e4d1 to your computer and use it in GitHub Desktop.
underscores in numeric variables
<?php
// previously
$number = 987654321.22; // hard to read
// now
$price = 987_654_321.22; // easy to read
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment