Find Windows 32 or 64 bit using PHP

前端 未结 6 1579
清酒与你
清酒与你 2020-12-05 11:05

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

6条回答
  •  执念已碎
    2020-12-05 11:39

    function bits() {
      return PHP_INT_SIZE * 8;
    }
    
    echo 'Php running on '.bits(). ' bits system';
    

提交回复
热议问题