php-src/ext/ftp/tests/ftp_constructor.phpt
Ilija Tovilo f39b5c4c25
Close PHP tags in tests
Closes GH-12422
2023-10-18 17:34:10 +02:00

16 lines
319 B
PHP

--TEST--
Attempt to instantiate an FTP\Connection directly
--EXTENSIONS--
ftp
pcntl
--FILE--
<?php
try {
new FTP\Connection();
} catch (Error $ex) {
echo "Exception: ", $ex->getMessage(), "\n";
}
?>
--EXPECT--
Exception: Cannot directly construct FTP\Connection, use ftp_connect() or ftp_ssl_connect() instead