php destructure associative array

Solutions on MaxInterview for php destructure associative array by the best coders in the world

showing results for - "php destructure associative array"
Greta
17 Jul 2018
1$options = ['enabled' => true, 'compression' => 'gzip'];
2['enabled' => $enabled, 'compression' => $compression] = $options;
3