mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
21 lines
398 B
PHP
Executable File
21 lines
398 B
PHP
Executable File
--TEST--
|
|
Testing ftp_rmdir returns true
|
|
--CREDITS--
|
|
Rodrigo Moyle <eu [at] rodrigorm [dot] com [dot] br>
|
|
#testfest PHPSP on 2009-06-20
|
|
--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");
|
|
ftp_login($ftp, 'user', 'pass');
|
|
|
|
var_dump(ftp_rmdir($ftp, 'www/'));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|