3v4l.org

run code in 300+ PHP versions simultaneously
<?php $results = [ [ 'key' => 'Group', 'value' => '123', ], [ 'key' => 'clientId', 'value' => '1234', ], [ 'key' => 'Name', 'value' => 'ABC - This company\'s name', ] ]; $index = array_search('clientId', array_column($results, 'key')); if($index===false) { //error handling } var_dump($results[$index]);

preferences:
28.53 ms | 406 KiB | 5 Q