Anonymous user / 18.119.126.80 Log In Register
?
Wallet: 3.00
Daily Credits:
1.20 / 1.20

PHP Functions Online


ord

(PHP 4, PHP 5)

ordReturn ASCII value of character

int ord(string $string)

Checkout ? #

Item Description Item Price Your Price
Total

Preview #

${{ variable.param.name }} = {{ variable.param|getValue:variable.form:true }};
{{ call.result}} = ;

Description #

int ord ( string $string )

Returns the ASCII value of the first character of string.

This function complements chr().

Parameters #

string

A character.

Return Values #

Returns the ASCII value as an integer.

Examples #

Example #1 ord() example

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

See Also #