Convertir un code ASCII avec la fonction ‘chr(int ascii )’ October 18, 2012 Author: user {filelink=13353} <html> <head> <title>String chr</title> </head> <body> <?php $ascii=99; // Convertir le code Ascii $caractere_equiv = chr($ascii); print "L'ASCII $ascii corresponds au caractère $caractere_equiv "; ?> </body> </html> Categories: Uncategorized