dave Fri Jul 30 00:20:42 2004 EDT
Modified files:
/phpdoc/en/reference/dir/functions getcwd.xml
/phpdoc/en/reference/strings/functions fprintf.xml printf.xml
vprintf.xml
Log:
- Proto fixes.
http://cvs.php.net/diff.php/phpdoc/en/reference/dir/functions/getcwd.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/dir/functions/getcwd.xml
diff -u phpdoc/en/reference/dir/functions/getcwd.xml:1.5
phpdoc/en/reference/dir/functions/getcwd.xml:1.6
--- phpdoc/en/reference/dir/functions/getcwd.xml:1.5 Mon Feb 9 07:30:42 2004
+++ phpdoc/en/reference/dir/functions/getcwd.xml Fri Jul 30 00:20:42 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/dir.xml, last change in rev 1.7 -->
<refentry id="function.getcwd">
<refnamediv>
@@ -13,7 +13,7 @@
<void/>
</methodsynopsis>
<para>
- Returns the current working directory.
+ Returns the current working directory, or &false; on failure.
</para>
<para>
<example>
http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/fprintf.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/strings/functions/fprintf.xml
diff -u phpdoc/en/reference/strings/functions/fprintf.xml:1.2
phpdoc/en/reference/strings/functions/fprintf.xml:1.3
--- phpdoc/en/reference/strings/functions/fprintf.xml:1.2 Fri May 30 12:47:59
2003
+++ phpdoc/en/reference/strings/functions/fprintf.xml Fri Jul 30 00:20:42 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.fprintf">
<refnamediv>
<refname>fprintf</refname>
@@ -119,6 +119,9 @@
</listitem>
</orderedlist>
</para>
+ <simpara>
+ Returns the length of the outputted string.
+ </simpara>
<simpara>
See also: <function>printf</function>,
<function>sprintf</function>,
http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/printf.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/strings/functions/printf.xml
diff -u phpdoc/en/reference/strings/functions/printf.xml:1.5
phpdoc/en/reference/strings/functions/printf.xml:1.6
--- phpdoc/en/reference/strings/functions/printf.xml:1.5 Fri May 21 19:05:20
2004
+++ phpdoc/en/reference/strings/functions/printf.xml Fri Jul 30 00:20:42 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
<refentry id="function.printf">
<refnamediv>
@@ -9,13 +9,16 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>void</type><methodname>printf</methodname>
+ <type>int</type><methodname>printf</methodname>
<methodparam><type>string</type><parameter>format</parameter></methodparam>
<methodparam
choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
</methodsynopsis>
<simpara>
Produces output according to <parameter>format</parameter>, which
is described in the documentation for <function>sprintf</function>.
+ </simpara>
+ <simpara>
+ Returns the length of the outputted string.
</simpara>
<simpara>
See also
http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/vprintf.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/strings/functions/vprintf.xml
diff -u phpdoc/en/reference/strings/functions/vprintf.xml:1.3
phpdoc/en/reference/strings/functions/vprintf.xml:1.4
--- phpdoc/en/reference/strings/functions/vprintf.xml:1.3 Sat Jul 27 00:07:06
2002
+++ phpdoc/en/reference/strings/functions/vprintf.xml Fri Jul 30 00:20:42 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.124 -->
<refentry id="function.vprintf">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>void</type><methodname>vprintf</methodname>
+ <type>int</type><methodname>vprintf</methodname>
<methodparam><type>string</type><parameter>format</parameter></methodparam>
<methodparam><type>array</type><parameter>args</parameter></methodparam>
</methodsynopsis>
@@ -21,6 +21,9 @@
<simpara>
Operates as <function>printf</function> but accepts an array of
arguments, rather than a variable number of arguments.
+ </simpara>
+ <simpara>
+ Returns the length of the outputted string.
</simpara>
<simpara>
See also <function>printf</function>, <function>sprintf</function>,