mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Document the optional escape parameter, available as of 5.3.0
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@244145 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3dbbc4fd73
commit
91f6add4c2
1 changed files with 17 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.23 $ -->
|
||||
<!-- $Revision: 1.24 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.fgetcsv">
|
||||
<refnamediv>
|
||||
<refname>fgetcsv</refname>
|
||||
|
@ -14,6 +14,7 @@
|
|||
<methodparam choice="opt"><type>int</type><parameter>length</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>string</type><parameter>delimiter</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>string</type><parameter>enclosure</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>string</type><parameter>escape</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Similar to <function>fgets</function> except that
|
||||
|
@ -66,6 +67,15 @@
|
|||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>escape</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Set the escape character (one character only). Defaults as a backslash
|
||||
(<literal>\</literal>)
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
@ -101,6 +111,12 @@
|
|||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>5.3.0</entry>
|
||||
<entry>
|
||||
The <parameter>escape</parameter> parameter was added
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>4.3.5</entry>
|
||||
<entry>
|
||||
|
|
Loading…
Reference in a new issue