3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arrays = [ [ "name" => "Morning Ride", "distance" => "1723.3", "type" => "Ride", "id" => "2011096935", ], [ "name" => "Evening Walk", "distance" => "3165.5", "type" => "Walk", "id" => "2008414015", ], [ "name" => "Morning walk", "distance" => "2262.9", "type" => "Walk", "id" => "1963423515", ], [ "name" => "Evening Runining", "distance" => "531.2", "type" => "Run", "id" => "1951087309", ] ]; $res = array_filter($arrays, function($x) { return $x["type"] == "Walk"; }); print_r($res);

preferences:
24.37 ms | 405 KiB | 5 Q