3v4l.org

run code in 300+ PHP versions simultaneously
<?php $buy_restrictions = array ( 0 => array ( 'type' => '3', 'value' => '314', ), 1 => array ( 'type' => '3', 'value' => '571', ), ); $buyRestrictions = array_map(function($e){ return $e['type'] == 3 ? $e['value'] : 0;}, $buy_restrictions); var_dump($buyRestrictions);

preferences:
35.68 ms | 402 KiB | 5 Q