Skip to content

Instantly share code, notes, and snippets.

@wogsland
Last active August 29, 2015 14:22
Show Gist options
  • Save wogsland/abcfc6d5157c5956412e to your computer and use it in GitHub Desktop.
Save wogsland/abcfc6d5157c5956412e to your computer and use it in GitHub Desktop.
PHP Floating Point Numbers Suck...
<?php
var_dump((31 - 18.6));
// float(12.4)
var_dump((31 - 18.6) > 12.4);
// bool(false)
var_dump((31 - 18.6) < 12.4);
// bool(true) WTF?!?!!?
var_dump((31 - 18.6) == 12.4);
// bool(false) Double WTF?!?!?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment