string chr ( int ascii_val ) converts an ASCII number to its character equivalent : chr « String « PHP






string chr ( int ascii_val ) converts an ASCII number to its character equivalent

 
<?
    $letter = chr(109);
    print "ASCII number 109 is equivalent to $letter\n";
?>
  
  

Related examples in the same category