Что нового в PHP 7.4?
- Typed properties:
public int $age; - Arrow functions:
fn($x) => $x * 2 - Spread operator в массивах:
[...$arr1, ...$arr2] - Null coalescing assignment:
$x ??= 'default' - Preloading: opcache.preload - загрузка классов при старте FPM
- Numeric literal separator:
1_000_000 - WeakReference
- FFI (Foreign Function Interface)