From 09ee4e0cc2abf4d6259f5c29f02a8c749aafae55 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Tue, 22 Apr 2008 20:37:58 +0000 Subject: [PATCH] - Fixed typo in comment. (reported by Brian Poole) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@258269 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/substr.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/substr.xml b/reference/strings/functions/substr.xml index 7d058cc4a3..df8d364bbe 100644 --- a/reference/strings/functions/substr.xml +++ b/reference/strings/functions/substr.xml @@ -1,5 +1,5 @@ - + substr @@ -125,7 +125,7 @@ echo substr('abcdef', 0, 8); // abcdef echo substr('abcdef', -1, 1); // f // Accessing single characters in a string -// can also be achived using "curly braces" +// can also be achieved using "curly braces" $string = 'abcdef'; echo $string{0}; // a echo $string{3}; // d