summaryrefslogtreecommitdiff
path: root/ext/ftp/tests/bug7216-2.phpt
blob: 23ab8511996cef3e670dbff1cc114973258d96e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #7216 (ftp_mkdir returns nothing (2))
--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, 'anonymous', 'IEUser@'));
// test for the correct behavior this time
var_dump(ftp_mkdir($ftp, 'CVS'));

?>
--EXPECT--
bool(true)
string(20) "/path/to/ftproot/CVS"