Skip to content

Instantly share code, notes, and snippets.

@slav123
Created January 4, 2014 12:16
Show Gist options
  • Save slav123/8254873 to your computer and use it in GitHub Desktop.
Save slav123/8254873 to your computer and use it in GitHub Desktop.
check which version PHP is running
<?php
switch(PHP_INT_SIZE) {
case 4:
echo '32-bit version of PHP';
break;
case 8:
echo '64-bit version of PHP';
break;
default:
echo 'PHP_INT_SIZE is ' . PHP_INT_SIZE;
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment