Convertir un code ASCII avec la fonction ‘chr(int ascii )’

Author:


Download

<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>

Leave a Reply

Your email address will not be published. Required fields are marked *


eight × = 40