From a3ef35fbdb03d2db728dba3452d7634ab2f02686 Mon Sep 17 00:00:00 2001 From: Jeroen van Wolffelaar Date: Sun, 12 Aug 2001 23:23:07 +0000 Subject: [PATCH] Add reference to an ASCII-table git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@54467 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/functions/strings.xml b/functions/strings.xml index b7af603fde..bfa379c0f2 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -196,6 +196,12 @@ $str .= chr(27); /* add an escape character at the end of $str */ $str = sprintf("The string ends in escape: %c", 27); + + + You can find an ASCII-table over here: &url.asciitable;. + + This function complements ord. See also sprintf with a format string of %c. @@ -1532,6 +1538,10 @@ if (ord($str) == 10) { + + You can find an ASCII-table over here: &url.asciitable;. + See also chr.