mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
22 lines
410 B
PHP
22 lines
410 B
PHP
--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"
|