1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?php
// V2
# FONCTION
function chiffres($txt) {
$chfr = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26);
$alpha = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');
$texte = str_replace($alpha, $chfr, $txt);
$longueur = strlen($texte);
// Conversion en array
$tab = array();
for ($i = 0; $i < $longueur; $i++){
$tab[$i]=$texte[$i];
}
return $tab;
}
# TEST
$_POST['txt'] = "ceci est un test";
$test = chiffres($_POST['txt']);
echo "<pre>";
print_r($test);
echo "</pre>";
?> |
Partager