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.
Diese neue Minor-Version bringt eine Reihe von neuen Features und einige wenige Inkompatibilitäten, die vor der Umstellung der PHP-Versionen in der Produktions-Umgebung getestet werden sollten.
Siehe auch die Migrationsleitfäden für PHP-Versionen 7.0.x und 7.1.x.
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.
each() function has been deprecated. So, it cannot be used in PHP 7.2, instead use foreach() function.