3v4l.org

run code in 300+ PHP versions simultaneously
<?php $saved_royalties = [ [ 'gross_total' => 1.797, 'track_name' => 'Desert Dance', 'transaction_type' => 'S' ], [ 'gross_total' => 0.0678, 'track_name' => 'Memphis City Of Kings', 'transaction_type' => 'AS' ], [ 'gross_total' => 0.023, 'track_name' => 'North African Market', 'transaction_type' => 'MT' ], [ 'gross_total' => 0.1173, 'track_name' => 'The Oracle', 'transaction_type' => 'CL' ] ]; $matching_royalty_rows = [ [ 'gross_total' => 2.435174, 'track_name' => 'Desert Dance', 'transaction_type' => 'S' ], [ 'gross_total' => 0.336815, 'track_name' => 'Memphis City Of Kings', 'transaction_type' => 'AS' ], [ 'gross_total' => 0.214106, 'track_name' => 'The Oracle', 'transaction_type' => 'CL' ] ]; $lookup = array_column($matching_royalty_rows, null, 'track_name'); $combined_rows = []; foreach ($saved_royalties as $row) { if (isset($lookup[$row['track_name']])) { $row = $lookup[$row['track_name']]; } else { $row['gross_total'] = 0; } $combined_rows[] = $row; } var_export($combined_rows);
Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.28, 8.4.1 - 8.4.14, 8.4.16, 8.5.0 - 8.5.1
array ( 0 => array ( 'gross_total' => 2.435174, 'track_name' => 'Desert Dance', 'transaction_type' => 'S', ), 1 => array ( 'gross_total' => 0.336815, 'track_name' => 'Memphis City Of Kings', 'transaction_type' => 'AS', ), 2 => array ( 'gross_total' => 0, 'track_name' => 'North African Market', 'transaction_type' => 'MT', ), 3 => array ( 'gross_total' => 0.214106, 'track_name' => 'The Oracle', 'transaction_type' => 'CL', ), )
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.

preferences:
153.64 ms | 408 KiB | 5 Q