From 6dacfa26de1ac02a1334c0b01ebe481a90220f9f Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Tue, 1 Aug 2006 02:23:17 +0000 Subject: [PATCH] Implemented the new doc style and some rewording where appropriate git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@217366 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/strlen.xml | 45 +++++++++++++++++++++++--- 1 file changed, 40 insertions(+), 5 deletions(-) diff --git a/reference/strings/functions/strlen.xml b/reference/strings/functions/strlen.xml index 8c60c66f85..d26a40f8c9 100644 --- a/reference/strings/functions/strlen.xml +++ b/reference/strings/functions/strlen.xml @@ -1,13 +1,13 @@ - + strlen Get string length - - - Description + + + &reftitle.description; intstrlen stringstring @@ -15,6 +15,34 @@ Returns the length of the given string. + + + + &reftitle.parameters; + + + + string + + + The string being measured for length. + + + + + + + + + &reftitle.returnvalues; + + The length of the string on success, + and 0 if the string is empty. + + + + + &reftitle.examples; A <function>strlen</function> example @@ -31,8 +59,15 @@ echo strlen($str); // 7 + + + + &reftitle.seealso; - See also count, and mb_strlen. + + count + mb_strlen +