Is it possible to get the window processor bit??
I want to find the window processor bit using php??
I have coding to find the operating system and other properties.
Kindly advice.
Thanks –
Haan
Is it possible to get the window processor bit?? I want to find the
Share
Assuming that you want to know the bitness of the PHP executable (not the microprocessor or the operating system):
Generally speaking, the size of an integer should be 4 bytes on 32-bit and 8 bytes on 64-bit platforms:
You may also look at the output of
phpinfo(INFO_GENERAL). Search theArchitectureandConfigure Commandlines for keywords such as i586, x86_64, AMD64, x86 and x64.