LoginSignup
3
3

More than 5 years have passed since last update.

PHP7調査(7)64bit環境における整数型のサイズ調整

Last updated at Posted at 2015-04-11

64bit Linux環境で64bitバイナリのPHP5を利用した場合、整数型は64bitになります。一方、64bit Windows環境ではPHP5の整数型は32bitになっていました。これは、過去経緯からPHPの整数型がCのlong型に対応していたためです。

PHP7では、このサイズを統一することになりました。64bit OSで64bitバイナリを使っていれば、PHPの整数型はWindowsでもLinuxでも常に64bitになります。

文字列の最大長もこれまで環境によってバラバラでしたが、これも64bit環境であれば64bitに統一されました。

参考

3
3
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
3
3