????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/ftp/tests/ |
Upload File : |
--TEST--
FTP with bogus parameters
--SKIPIF--
<?php
require 'skipif.inc';
?>
--FILE--
<?php
require 'server.inc';
$ftp = ftp_connect('127.0.0.1', $port);
if (!$ftp) die("Couldn't connect to the server");
var_dump(ftp_login($ftp, 'user', 'pass'));
var_dump(ftp_systype($ftp));
/* some bogus usage */
var_dump(ftp_alloc($ftp, array()));
var_dump(ftp_cdup($ftp, 0));
var_dump(ftp_chdir($ftp, array()));
var_dump(ftp_chmod($ftp, 0666));
var_dump(ftp_get($ftp, 1234,12));
var_dump(ftp_close());
var_dump(ftp_connect('sfjkfjaksfjkasjf'));
var_dump(ftp_delete($ftp, array()));
var_dump(ftp_exec($ftp, array()));
var_dump(ftp_systype($ftp, 0));
var_dump(ftp_pwd($ftp, array()));
var_dump(ftp_login($ftp));
var_dump(ftp_login($ftp, 'user', 'bogus'));
var_dump(ftp_quit($ftp));
?>
--EXPECTF--
bool(true)
string(4) "UNIX"
Warning: ftp_alloc() expects parameter 2 to be long, array given in %s004.php on line 12
bool(false)
Warning: ftp_cdup() expects exactly 1 parameter, 2 given in %s004.php on line 13
NULL
Warning: ftp_chdir() expects parameter 2 to be string, array given in %s004.php on line 14
NULL
Warning: ftp_chmod() expects exactly 3 parameters, 2 given in %s on line %d
bool(false)
Warning: ftp_get() expects at least 4 parameters, 3 given in %s on line %d
NULL
Warning: ftp_close() expects exactly 1 parameter, 0 given in %s004.php on line 17
NULL
Warning: ftp_connect(): php_network_getaddresses: getaddrinfo failed: %s in %s004.php on line 18
bool(false)
Warning: ftp_delete() expects parameter 2 to be string, array given in %s004.php on line 19
NULL
Warning: ftp_exec() expects parameter 2 to be string, array given in %s004.php on line 20
NULL
Warning: ftp_systype() expects exactly 1 parameter, 2 given in %s004.php on line 22
NULL
Warning: ftp_pwd() expects exactly 1 parameter, 2 given in %s004.php on line 23
NULL
Warning: ftp_login() expects exactly 3 parameters, 1 given in %s004.php on line 25
NULL
Warning: ftp_login(): Not logged in. in %s004.php on line 26
bool(false)
bool(true)