Je veux faire var_export() et supprimer toutes les clés numériques d'un tableau. Mon tableau se présente comme suit :
array (
2 =>
array (
1 =>
array (
'infor' => 'Radiation therapy & chemo subhead',
'PPOWithNotif' => '',
'PPOWithOutNotif' => 'Radiation therapy & chemo PPO amount',
'NonPPO' => 'Radiation therapy & chemo Non PPO amount',
),
),
3 =>
array (
1 =>
array (
'infor' => 'Allergy testing & treatment subhead',
'PPOWithNotif' => '',
'PPOWithOutNotif' => 'Allergy testing & treatment PPO amount',
'NonPPO' => 'Allergy testing & treatment Non PPO amount',
),
)
)
De cette façon, je peux mélanger les valeurs du tableau selon mes besoins sans avoir à me soucier des valeurs numériques du tableau.
J'ai essayé d'utiliser echo preg_replace("/[0-9]+ \=\>/i", '', var_export($data));
mais ça ne fait rien. Avez-vous des suggestions ? Y a-t-il quelque chose que je ne fais pas avec mon expression rationnelle ? Existe-t-il une meilleure solution pour ce problème ?