From ea09e1e3fcd8de973437436391049170a9868150 Mon Sep 17 00:00:00 2001 From: Dave Barr Date: Fri, 30 Jul 2004 04:20:42 +0000 Subject: [PATCH] - Proto fixes. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@164697 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/dir/functions/getcwd.xml | 4 ++-- reference/strings/functions/fprintf.xml | 5 ++++- reference/strings/functions/printf.xml | 7 +++++-- reference/strings/functions/vprintf.xml | 7 +++++-- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/reference/dir/functions/getcwd.xml b/reference/dir/functions/getcwd.xml index 90dc9b81a5..2359edce93 100644 --- a/reference/dir/functions/getcwd.xml +++ b/reference/dir/functions/getcwd.xml @@ -1,5 +1,5 @@ - + @@ -13,7 +13,7 @@ - Returns the current working directory. + Returns the current working directory, or &false; on failure. diff --git a/reference/strings/functions/fprintf.xml b/reference/strings/functions/fprintf.xml index 3a8b934df6..4e5cd6e575 100644 --- a/reference/strings/functions/fprintf.xml +++ b/reference/strings/functions/fprintf.xml @@ -1,5 +1,5 @@ - + fprintf @@ -119,6 +119,9 @@ + + Returns the length of the outputted string. + See also: printf, sprintf, diff --git a/reference/strings/functions/printf.xml b/reference/strings/functions/printf.xml index 4553484be9..635053f0b1 100644 --- a/reference/strings/functions/printf.xml +++ b/reference/strings/functions/printf.xml @@ -1,5 +1,5 @@ - + @@ -9,7 +9,7 @@ Description - voidprintf + intprintf stringformat mixedargs @@ -17,6 +17,9 @@ Produces output according to format, which is described in the documentation for sprintf. + + Returns the length of the outputted string. + See also print, diff --git a/reference/strings/functions/vprintf.xml b/reference/strings/functions/vprintf.xml index bf7a4167b1..42a848e181 100644 --- a/reference/strings/functions/vprintf.xml +++ b/reference/strings/functions/vprintf.xml @@ -1,5 +1,5 @@ - + @@ -9,7 +9,7 @@ Description - voidvprintf + intvprintf stringformat arrayargs @@ -22,6 +22,9 @@ Operates as printf but accepts an array of arguments, rather than a variable number of arguments. + + Returns the length of the outputted string. + See also printf, sprintf, vsprintf