Funcții cu șiruri de caractere
PHP Manual

chr

(PHP 4, PHP 5, PHP 7)

chrReturn a specific character

Descrierea

string chr ( int $ascii )

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

This function complements ord().

Parametri

ascii

The extended ASCII code.

Values outside the valid range (0..255) will be bitwise and'ed with 255, which is equivalent to the following algorithm:

while ($ascii < 0) {
    $ascii += 256;
}
$ascii %= 256;

Valorile întoarse

Returns the specified character.

Exemple

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);
?>

Example #2 Overflow behavior

<?php
echo chr(-159), chr(833), PHP_EOL;
?>

Exemplul de mai sus va afișa:

aA

A se vedea și


Funcții cu șiruri de caractere
PHP Manual