added docs for ftp_listraw and ftp_systype

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@13174 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Andrew Skalski 1999-09-16 18:35:13 +00:00
parent 214e30af88
commit 722539e467

View file

@ -90,6 +90,47 @@
</refsect1>
</refentry>
<refentry id="function.ftp-listraw">
<refnamediv>
<refname>ftp_listraw</refname>
<refpurpose>
Returns a detailed list of files in the given directory.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<funcsynopsis>
<funcdef>int <function>ftp_listraw</function></funcdef>
<paramdef>int <parameter>ftp_stream</parameter></paramdef>
<paramdef>string <parameter>directory</parameter></paramdef>
</funcsynopsis>
<para>
<function>ftp_listraw</function> executes the FTP LIST command,
and returns the result as an array. Each array element corresponds
to one line of text. The output is not parsed in any way. The
system type identifier returned by <function>ftp_systype</function>
can be used to determine how the results should be interpreted.
</refsect1>
</refentry>
<refentry id="function.ftp-systype">
<refnamediv>
<refname>ftp_systype</refname>
<refpurpose>
Returns the system type identifier of the remote FTP server.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<funcsynopsis>
<funcdef>int <function>ftp_systype</function></funcdef>
<paramdef>int <parameter>ftp_stream</parameter></paramdef>
</funcsynopsis>
<para>
Returns the remote system type, or false on error.
</refsect1>
</refentry>
<refentry id="function.ftp-get">
<refnamediv>
<refname>ftp_get</refname>