Does anyone know of a way of checking within PHP if the script is running as either 32-bit or 64-bit? Currently I\'m using PHP 5.3.5.
Ideally I\'d like to write a f
I just looked around and didn't find anything too promising. There's a good chance that you can use $_SERVER['SERVER_SOFTWARE'] to tell (check out what it prints on your system), but making this portable and always accurate is probably not doable.
$_SERVER['SERVER_SOFTWARE']