3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = [ 0 => [ "qty" => 1, "name" => "Guide, interlocked slats, R Commodity code: 39239000 / Country of origin: PL. Delivery note 838174147 from 12.09.2019 PC 1,50/ 10", ], 1 => [ "qty" => null, "name" => "Guide, interlocked slats, L Commodity code: 39239000 / Country of origin: PL. Delivery note 838174147 from 12.09.2019 PC", ], 2 => [ "qty" => null, "name" => "Bottom groove set L + R Commodity code: 39239000 / Country of origin:", ] ]; $keys = $a[0]; foreach ($a as $item) { foreach ($item as $key => $value) { if ($value === null) { unset($keys[$key]); } if (empty($keys)) { break 2; } } } print_r(array_keys($keys));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => name )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
27.3 ms | 405 KiB | 5 Q