$v) $a[$k] = $a[$k][$index]; return $a; } function preg_find_delete($regexp, &$donnees, $match = NULL, $submatch = NULL, $limit = -1) { preg_match_all($regexp, $donnees, $matches); if (!is_null($match)) $matches = subarrays($matches, $match); if (!is_null($submatch)) $matches = $matches[$submatch]; $donnees = preg_replace($regexp, "", $donnees, $limit); return $matches; } ?>