Rechercher et remplacer avec la fonction ‘ereg_replace(string pattern,string replace, string string) ‘ November 22, 2011 Author: user {filelink=13372} <html> <head> <title>Expression régulière</title> </head> <body> <?php $chaine = "Je dis non"; $resulat = ereg_replace("non", "oui", $chaine); print $resulat; ?> </body> </html> Categories: Uncategorized