0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www.OLD
/
fonctions
/
filtres
/
[
Home
]
File: filtrefonction.php
<?php function filtre_fonction($texte, $nom, $fonction){ preg_match_all("`\#FILTRE_$nom\(([^\)]+)\)`", $texte, $cut); $tab1 = ""; $tab2 = ""; for($i=0; $i<count($cut[1]); $i++){ $tab1[$i] = "#FILTRE_$nom(" . $cut[1][$i] . ")"; $tab2[$i] = $fonction($cut[1][$i]); } $texte = str_replace($tab1, $tab2, $texte); return $texte; } ?>
©
2018.