Return a specific character
$ascii
Returns a one-character string containing the character specified by ascii.
ascii
This function complements ord.
The ascii code.
Returns the specified character.
Example #1 chr example
<?php$str = "The string ends in escape: ";$str .= chr(27); /* add an escape character at the end of $str *//* Often this is more useful */$str = sprintf("The string ends in escape: %c", 27);?>