String Funkcje
PHP Manual

ord

(PHP 4, PHP 5)

ordReturn ASCII value of character

Opis

int ord ( string $string )

Returns the ASCII value of the first character of string.

This function complements chr().

Parametry

string

A character.

Zwracane wartości

Returns the ASCII value as an integer.

Przykłady

Przykład #1 ord() example

<?php
$str 
"\n";
if (
ord($str) == 10) {
    echo 
"The first character of \$str is a line feed.\n";
}
?>

Zobacz też:


String Funkcje
PHP Manual