PHP Velho Oeste 2024

PHP 7.1.x から PHP 7.2.x への移行

目次

このマイナーバージョンアップには数多くの 新機能 があります。 また、 互換性がない変更 が多少あるので、実運用環境の PHP をこのバージョンにあげる前にはテストすべきです。

これらのバージョンへの移行ガイドも参照ください。 7.0.x および 7.1.x

add a note add a note

User Contributed Notes 3 notes

up
3
Siguy
5 years ago
Pascal is correct. each() can still be used however it is not advised as it is likely to be removed in the next major version. Deprecated does not mean you cannot use it anymore, it's merely 'marked' as to be removed in the future.
up
1
Pascal
6 years ago
each() can still be used with php 7.2 as it is deprecated only.
up
-18
arorakartik4 at gmail dot com
6 years ago
each() function has been deprecated. So, it cannot be used in PHP 7.2, instead use foreach() function.
To Top