fix spelling + extra tags

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@169555 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Damien Seguy 2004-09-29 15:24:13 +00:00
parent a8d2566db2
commit f1720e55ed

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="function.fputcsv">
<refnamediv>
<refname>fputcsv</refname>
@ -19,16 +19,17 @@
<para>
<function>fputcsv</function> formats a line (passed as a
<parameter>fields</parameter> array) as CSV and write it to the
specified file <parameter>handle</parameter>. Returns the legth of the
specified file <parameter>handle</parameter>. Returns the length of the
written string, or &false; on failure.
</para>
<para>
The optional <parameter>delimiter</parameter> parameter sets the field
delimiter (one character only). Defaults as a comma.
delimiter (one character only). Defaults as a comma: <literal>,</literal>.
</para>
<para>
The <parameter>enclosure</parameter> parameter sets the field enclosure
(one character only) and defaults to a double quotation mark (").
The optional <parameter>enclosure</parameter> parameter sets the field
enclosure (one character only) and defaults to a double quotation mark:
<literal>"</literal>.
</para>
<para>
<example>