Home
last modified time | relevance | path

Searched refs:ftp (Results 51 – 75 of 103) sorted by relevance

12345

/PHP-7.4/ext/ftp/tests/
H A Dbug37799.phpt14 $ftp = ftp_ssl_connect('127.0.0.1', $port);
15 if (!$ftp) die("Couldn't connect to the server");
17 var_dump(ftp_login($ftp, 'user', 'pass'));
19 ftp_close($ftp);
H A Dftp_get_basic.phpt13 $ftp = ftp_connect('127.0.0.1', $port);
14 if (!$ftp) die("Couldn't connect to the server");
16 var_dump(ftp_login($ftp, 'user', 'pass'));
20 var_dump(ftp_get($ftp, $tmpfname ,'a story.txt', FTP_ASCII));
26 var_dump(ftp_get($ftp, $tmpfname, 'binary data.bin', FTP_BINARY));
31 ftp_get($ftp, $tmpfname ,'a warning.txt', FTP_ASCII);
H A Dftp_fget_basic2.phpt14 $ftp = ftp_connect('127.0.0.1', $port);
15 ftp_login($ftp, 'user', 'pass');
16 if (!$ftp) die("Couldn't connect to the server");
22 var_dump(ftp_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_fget_basic3.phpt14 $ftp = ftp_connect('127.0.0.1', $port);
15 ftp_login($ftp, 'user', 'pass');
16 if (!$ftp) die("Couldn't connect to the server");
22 var_dump(ftp_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, 8));
H A Dftp_nb_fget_basic2.phpt14 $ftp = ftp_connect('127.0.0.1', $port);
15 ftp_login($ftp, 'user', 'pass');
16 if (!$ftp) die("Couldn't connect to the server");
22 var_dump(ftp_nb_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_nb_fget_basic3.phpt14 $ftp = ftp_connect('127.0.0.1', $port);
15 ftp_login($ftp, 'user', 'pass');
16 if (!$ftp) die("Couldn't connect to the server");
22 var_dump(ftp_nb_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, 8));
H A Dftp_nb_get_large.phpt17 $ftp = ftp_connect('127.0.0.1', $port);
18 ftp_login($ftp, 'user', 'pass');
19 if (!$ftp) die("Couldn't connect to the server");
23 ftp_nb_get($ftp, $local_file, 'fget_large.txt', FTP_BINARY, 5368709119);
H A Dftp_mlsd.phpt11 $ftp = ftp_connect('127.0.0.1', $port);
12 if (!$ftp) die("Couldn't connect to the server");
14 var_dump(ftp_login($ftp, 'user', 'pass'));
16 var_dump(ftp_mlsd($ftp, '.'));
18 ftp_close($ftp);
H A Dskipif.inc2 if (!extension_loaded('ftp')) die('skip ftp extension not loaded');
H A Dftp_nb_continue.phpt13 $ftp = ftp_connect('127.0.0.1', $port);
14 ftp_login($ftp, 'user', 'pass');
15 if (!$ftp) die("Couldn't connect to the server");
20 $r = ftp_nb_get($ftp, $local_file, $file, FTP_BINARY);
22 $r = ftp_nb_continue($ftp);
24 ftp_close($ftp);
/PHP-7.4/ext/standard/tests/streams/
H A Dopendir-004.phpt5 if (array_search('ftp',stream_get_wrappers()) === FALSE) die("skip ftp wrapper not available.");
13 require __DIR__ . "/../../../ftp/tests/server.inc";
17 $context = stream_context_create(array('ssl' => array('cafile' => __DIR__ . '/../../../ftp/tests/c…
H A Dopendir-003.phpt5 if (array_search('ftp',stream_get_wrappers()) === FALSE) die("skip ftp wrapper not available.");
13 require __DIR__ . "/../../../ftp/tests/server.inc";
17 $context = stream_context_create(array('ssl' => array('cafile' => __DIR__ . '/../../../ftp/tests/c…
H A Dbug49936_win32.phpt2 Bug #49936 (crash with ftp stream in php_stream_context_get_option())
13 $dir = 'ftp://your:self@localhost/';
23 Warning: opendir(ftp://...@localhost/): failed to open dir: operation failed in %s on line %d
29 Warning: opendir(ftp://...@localhost/): failed to open dir: operation failed in %s on line %d
H A Dbug72771.phpt5 if (array_search('ftp',stream_get_wrappers()) === FALSE) die("skip ftp wrapper not available.");
12 require __DIR__ . "/../../../ftp/tests/server.inc";
H A Dbug49936.phpt2 Bug #49936 (crash with ftp stream in php_stream_context_get_option())
11 $dir = 'ftp://your:self@localhost/';
/PHP-7.4/ext/ftp/
H A Dconfig.m41 PHP_ARG_ENABLE([ftp],
3 [AS_HELP_STRING([--enable-ftp],
16 PHP_NEW_EXTENSION(ftp, php_ftp.c ftp.c, $ext_shared)
H A Dphp_ftp.h36 PHP_MINIT_FUNCTION(ftp);
37 PHP_MINFO_FUNCTION(ftp);
/PHP-7.4/ext/fileinfo/
H A Dgenerate_patch.sh4 wget -O - ftp://ftp.astron.com/pub/file/file-$VERSION.tar.gz \
/PHP-7.4/ext/filter/tests/
H A D015.phpt33 'ftp://ftp.example.com/tmp/',
94 string(26) "ftp://ftp.example.com/tmp/"
/PHP-7.4/ext/fileinfo/libmagic/
H A DLICENSE2 Download: ftp://ftp.astron.com/pub/file/
/PHP-7.4/ext/standard/tests/general_functions/
H A Dgetservbyname_basic.phpt17 …$services = array('http', 'ftp', 'ssh', 'telnet', 'imap', 'smtp', 'nicname', 'gopher', 'finger', '…
/PHP-7.4/azure/
H A Dconfigure.yml47 --enable-ftp \
/PHP-7.4/travis/
H A Dcompile.sh73 --enable-ftp \
/PHP-7.4/ext/curl/tests/
H A Dcheck_win_config.phpt51 Protocols => dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rts…
H A Dcurl_multi_segfault.phpt18 $url = "ftp://$username:$password@$host/" ;

Completed in 24 milliseconds

12345