J'ai un tableau construit comme celui-ci
array (size=2) 0 => array (size=12) 'id_objects' => string '2876' (length=4) 'room_val' => string '1882840,1882841,1882842' (length=23) 'date_from' => string '2022-06-22' (length=10) 'date_to' => string '2022-06-22' (length=10) 1 => array (size=12) 'id_objects' => string '2876' (length=4) 'room_val' => string '3198723,3198724,3198726' (length=23) 'date_from' => string '2022-06-22' (length=10) 'date_to' => string '2022-06-22' (length=10)
Ce que je dois réaliser, c'est exploser 'room_val' mais garder le reste des données identiques, cela doit ressembler à ceci
array (size=2) 0 => array (size=12) 'id_objects' => string '2876' (length=4) 'room_val' => string '1882840' (length=23) 'date_from' => string '2022-06-22' (length=10) 'date_to' => string '2022-06-22' (length=10) 1 => array (size=12) 'id_objects' => string '2876' (length=4) 'room_val' => string '1882841' (length=23) 'date_from' => string '2022-06-22' (length=10) 'date_to' => string '2022-06-22' (length=10) ..... rest of array
Est-ce possible ?
Vous devez analyser le tableau de tableaux et créer un nouveau tableau qui correspond à ce que vous recherchez.
Semblable à :