function typoenluminee_pre_typo($texte) { // ... $chercher_raccourcis = array( // ... /* 19 */ "/\(c\)/Si", /* 20 */ "/\(r\)/Si", /* 21 */ "/\(tm\)/Si", /* 22 */ "/\.\.\./S", ); $remplacer_raccourcis = array( // ... /* 19 */ "©", /* 20 */ "®", /* 21 */ "™", /* 22 */ "…", ); // ... $texte = preg_replace($chercher_raccourcis, $remplacer_raccourcis, $texte); // ... return $texte; }