<?php $dates = [ '2022-10-23' => '2022-10-23', '2022-10-24' => '2022-10-24', '2022-10-25' => '2022-10-25', '2022-10-26' => '2022-10-26', '2022-10-27' => '2022-10-27', '2022-10-28' => '2022-10-28', '2022-10-29' => '2022-10-29' ]; $rows = [ '2022-10-24' => [ 'id' => 11, 'user_id' => 1, 'notitie' => 'Mag al helemaal niet', 'datum' => '2022-10-24', 'user_role' => 'client' ], '2022-10-26' => [ 'id' => 15, 'user_id' => 1, 'notitie' => 26, 'datum' => '2022-10-26', 'user_role' => 'client' ], ]; var_export( array_map( fn($v) => $rows[$v] ?? [], $dates ) );
You have javascript disabled. You will not be able to edit any code.