File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / ftp / tests / 002.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:56 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
FTP login (SSL)
--SKIPIF--
<?php
$ssl = 1;
require 'skipif.inc';
?>
--FILE--
<?php
$ssl = 1;
require 'server.inc';

$ftp = ftp_ssl_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_raw($ftp, 'HELP'));
var_dump(ftp_raw($ftp, 'HELP HELP'));

var_dump(ftp_close($ftp));
?>
--EXPECT--
bool(true)
array(4) {
  [0]=>
  string(55) "214-There is help available for the following commands:"
  [1]=>
  string(5) " USER"
  [2]=>
  string(5) " HELP"
  [3]=>
  string(15) "214 end of list"
}
array(1) {
  [0]=>
  string(39) "214 Syntax: HELP [<SP> <string>] <CRLF>"
}
bool(true)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>