Skip to content

Instantly share code, notes, and snippets.

@borkweb
Created May 7, 2013 12:34
Show Gist options
  • Save borkweb/5532229 to your computer and use it in GitHub Desktop.
Save borkweb/5532229 to your computer and use it in GitHub Desktop.
Bitwise decimal truncation test
<?php
$data = 2.345;
echo ~~$data . "\n\n"; // spits out: 2
$data = 2.8;
echo ~~$data . "\n\n"; // spits out: 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment