3v4l.org

run code in 300+ PHP versions simultaneously
<?php $prices = array ( 0 => array ( 'regprice' => 25.00, 'saleprice' => 17.00 ), 1 => array ( 'regprice' => null, 'saleprice' => 19.00 ), 2 => array ( 'regprice' => 21.00, 'saleprice' => 12.00 ) ); $lowest_index = array_keys(array_column($prices, 'saleprice'), min(array_column($prices, 'saleprice'))); print_r($lowest_index);

preferences:
102.97 ms | 1482 KiB | 5 Q