|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 |
| -<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: cucinato Status: ready --> |
| 2 | +<!-- EN-Revision: 4d1c34c9b7a30cfc3a59641122c707a2812cfed7 Maintainer: cucinato Status: ready --> |
3 | 3 | <refentry xml:id="function.ftp-delete" xmlns="http://docbook.org/ns/docbook">
|
4 | 4 | <refnamediv>
|
5 | 5 | <refname>ftp_delete</refname>
|
|
9 | 9 | &reftitle.description;
|
10 | 10 | <methodsynopsis>
|
11 | 11 | <type>bool</type><methodname>ftp_delete</methodname>
|
12 |
| - <methodparam><type>resource</type><parameter>ftp_stream</parameter></methodparam> |
13 |
| - <methodparam><type>string</type><parameter>path</parameter></methodparam> |
| 12 | + <methodparam><type>FTP\Connection</type><parameter>ftp</parameter></methodparam> |
| 13 | + <methodparam><type>string</type><parameter>filename</parameter></methodparam> |
14 | 14 | </methodsynopsis>
|
15 | 15 | <para>
|
16 | 16 | <function>ftp_delete</function> cancella il file specificato da
|
17 |
| - <parameter>path</parameter> dal server FTP. |
| 17 | + <parameter>filename</parameter> dal server FTP. |
18 | 18 | </para>
|
19 | 19 | </refsect1>
|
20 | 20 | <refsect1 role="parameters">
|
21 | 21 | &reftitle.parameters;
|
22 | 22 | <para>
|
23 | 23 | <variablelist>
|
24 | 24 | <varlistentry>
|
25 |
| - <term><parameter>ftp_stream</parameter></term> |
| 25 | + <term><parameter>ftp</parameter></term> |
26 | 26 | <listitem>
|
27 |
| - <para> |
28 |
| - L'identificatore di collegamento della connessione FTP. |
29 |
| - </para> |
| 27 | + &ftp.parameter.ftp; |
30 | 28 | </listitem>
|
31 | 29 | </varlistentry>
|
32 | 30 | <varlistentry>
|
33 |
| - <term><parameter>path</parameter></term> |
| 31 | + <term><parameter>filename</parameter></term> |
34 | 32 | <listitem>
|
35 | 33 | <para>
|
36 | 34 | Il file da cancellare.
|
|
46 | 44 | &return.success;
|
47 | 45 | </para>
|
48 | 46 | </refsect1>
|
| 47 | + |
| 48 | + <refsect1 role="changelog"> |
| 49 | + &reftitle.changelog; |
| 50 | + <informaltable> |
| 51 | + <tgroup cols="2"> |
| 52 | + <thead> |
| 53 | + <row> |
| 54 | + <entry>&Version;</entry> |
| 55 | + <entry>&Description;</entry> |
| 56 | + </row> |
| 57 | + </thead> |
| 58 | + <tbody> |
| 59 | + &ftp.changelog.ftp-param; |
| 60 | + </tbody> |
| 61 | + </tgroup> |
| 62 | + </informaltable> |
| 63 | + </refsect1> |
| 64 | + |
49 | 65 | <refsect1 role="examples">
|
50 | 66 | &reftitle.examples;
|
51 | 67 | <para>
|
|
57 | 73 | $file = 'public_html/old.txt';
|
58 | 74 |
|
59 | 75 | // stabilisce la connessione
|
60 |
| -$conn_id = ftp_connect($ftp_server); |
| 76 | +$ftp = ftp_connect($ftp_server); |
61 | 77 |
|
62 | 78 | // si collega con nome utente e password
|
63 |
| -$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); |
| 79 | +$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass); |
64 | 80 |
|
65 | 81 | // prova a cancellare $file
|
66 |
| -if (ftp_delete($conn_id, $file)) { |
| 82 | +if (ftp_delete($ftp, $file)) { |
67 | 83 | echo "$file cancellato correttamente\n";
|
68 | 84 | } else {
|
69 | 85 | echo "impossibile cancellare $file\n";
|
70 | 86 | }
|
71 | 87 |
|
72 | 88 | // chiude la connessione
|
73 |
| -ftp_close($conn_id); |
| 89 | +ftp_close($ftp); |
74 | 90 | ?>
|
75 | 91 | ]]>
|
76 | 92 | </programlisting>
|
77 | 93 | </example>
|
78 | 94 | </para>
|
79 | 95 | </refsect1>
|
80 | 96 | </refentry>
|
81 |
| - |
82 | 97 | <!-- Keep this comment at the end of the file
|
83 | 98 | Local variables:
|
84 | 99 | mode: sgml
|
|
0 commit comments