summaryrefslogtreecommitdiff
path: root/ext/ftp/tests/ftp_constructor.phpt
blob: 881677f6a5514d3c5da15cfe9a613b1bff3d6ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Attempt to instantiate an FTPConnection directly
--SKIPIF--
<?php
require 'skipif.inc';
--FILE--
<?php

try {
    new FTPConnection();
} catch (Error $ex) {
    echo "Exception: ", $ex->getMessage(), "\n";
}
--EXPECT--
Exception: Cannot directly construct FTPConnection, use ftp_connect() or ftp_ssl_connect() instead