mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
Another example, some return type corrections.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@31734 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a16e219d25
commit
b6086a8890
1 changed files with 8 additions and 3 deletions
|
@ -104,7 +104,7 @@ ftp_quit($conn_id);
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>ftp_pwd</function></funcdef>
|
||||
<funcdef>string <function>ftp_pwd</function></funcdef>
|
||||
<paramdef>int <parameter>ftp_stream</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
|
@ -251,7 +251,7 @@ ftp_quit($conn_id);
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>ftp_systype</function></funcdef>
|
||||
<funcdef>string <function>ftp_systype</function></funcdef>
|
||||
<paramdef>int <parameter>ftp_stream</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
|
@ -363,7 +363,12 @@ ftp_quit($conn_id);
|
|||
on the FTP server, as <parameter>remote_file</parameter>. The transfer
|
||||
<parameter>mode</parameter> specified must be either
|
||||
<constant>FTP_ASCII</constant> or <constant>FTP_BINARY</constant>.
|
||||
</para>
|
||||
<example>
|
||||
<programlisting>
|
||||
$upload = ftp_put($conn_id, "$destination_file", "$source_file", FTP_ASCII);
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
|
Loading…
Reference in a new issue