Skip to content

Instantly share code, notes, and snippets.

@kalleth
Created September 12, 2011 12:05
Show Gist options
  • Save kalleth/1211109 to your computer and use it in GitHub Desktop.
Save kalleth/1211109 to your computer and use it in GitHub Desktop.
PHP WTF
trussell@whopper:~/Projects/app/$ php -a
Interactive shell
php > $foo = "16.83";
php > echo $foo;
16.83
php > $bar = (float) $foo;
php > echo $bar;
16.83
php > $baz = $bar * 100;
php > echo $baz;
1683
php > $a = (int) $baz;
php > echo $a;
1682
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment