Skip to content

Instantly share code, notes, and snippets.

@Tyrael
Created September 27, 2011 12:52
Show Gist options
  • Select an option

  • Save Tyrael/1244988 to your computer and use it in GitHub Desktop.

Select an option

Save Tyrael/1244988 to your computer and use it in GitHub Desktop.
is really int. O RLY?
<?php
function is_really_int(&$val) {
$num = (int)$val;
if ($val==$num) {
$val=$num;
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment