Lines Matching refs:ftp

7 ftp
11 $ftp = tmpfile();
14 var_dump(ftp_login($ftp, 'user', 'pass'));
19 var_dump(ftp_pwd($ftp));
24 var_dump(ftp_cdup($ftp));
29 var_dump(ftp_chdir($ftp, '~'));
34 var_dump(ftp_exec($ftp, 'x'));
39 var_dump(ftp_raw($ftp, 'x'));
44 var_dump(ftp_mkdir($ftp, '/'));
49 var_dump(ftp_rmdir($ftp, '/'));
54 var_dump(ftp_chmod($ftp, 7777, '/'));
59 var_dump(ftp_alloc($ftp, 7777));
64 var_dump(ftp_nlist($ftp, '/'));
69 var_dump(ftp_rawlist($ftp, '~'));
74 var_dump(ftp_mlsd($ftp, '~'));
79 var_dump(ftp_systype($ftp));
84 var_dump(ftp_fget($ftp, $ftp, 'remote', 7777));
89 var_dump(ftp_nb_fget($ftp, $ftp, 'remote', 7777));
94 var_dump(ftp_pasv($ftp, false));
99 var_dump(ftp_get($ftp, 'local', 'remote', 7777));
104 var_dump(ftp_nb_get($ftp, 'local', 'remote', 7777));
109 var_dump(ftp_nb_continue($ftp));
114 var_dump(ftp_fput($ftp, 'remote', $ftp, 9999));
119 var_dump(ftp_nb_fput($ftp, 'remote', $ftp, 9999));
124 var_dump(ftp_put($ftp, 'remote', 'local', 9999));
129 var_dump(ftp_append($ftp, 'remote', 'local', 9999));
134 var_dump(ftp_nb_put($ftp, 'remote', 'local', 9999));
139 var_dump(ftp_size($ftp, '~'));
144 var_dump(ftp_mdtm($ftp, '~'));
149 var_dump(ftp_rename($ftp, 'old', 'new'));
154 var_dump(ftp_delete($ftp, 'gone'));
159 var_dump(ftp_site($ftp, 'localhost'));
164 var_dump(ftp_close($ftp));
169 var_dump(ftp_set_option($ftp, 1, 2));
174 var_dump(ftp_get_option($ftp, 1));
179 fclose($ftp);
182 ftp_login(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
183 ftp_pwd(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
184 ftp_cdup(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
185 ftp_chdir(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
186 ftp_exec(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
187 ftp_raw(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
188 ftp_mkdir(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
189 ftp_rmdir(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
190 ftp_chmod(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
191 ftp_alloc(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
192 ftp_nlist(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
193 ftp_rawlist(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
194 ftp_mlsd(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
195 ftp_systype(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
196 ftp_fget(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
197 ftp_nb_fget(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
198 ftp_pasv(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
199 ftp_get(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
200 ftp_nb_get(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
201 ftp_nb_continue(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
202 ftp_fput(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
203 ftp_nb_fput(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
204 ftp_put(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
205 ftp_append(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
206 ftp_nb_put(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
207 ftp_size(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
208 ftp_mdtm(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
209 ftp_rename(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
210 ftp_delete(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
211 ftp_site(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
212 ftp_close(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
213 ftp_set_option(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
214 ftp_get_option(): Argument #1 ($ftp) must be of type FTP\Connection, resource given