LoginSignup
13
12

More than 5 years have passed since last update.

phpが32bitか64bitか確認する方法

Posted at

PHPコマンドで確認

php -r 'echo PHP_INT_SIZE;'

PHPファイルで確認

<?php
echo PHP_INT_SIZE;
環境 結果
32ビット 4
64ビット 8
13
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
12