PHP3 Manual
PrevNext

Chr

Chr -- return a specific character

Description

string chr(int ascii);

Returns a one-character string containing the character specified by ascii.

Example 1. chr() example

$str .= chr(27); /* add an escape character at the end of $str */
This function complements ord().


PrevHomeNext
ChopUpcrypt