mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 00:22:40 +00:00
15 lines
243 B
PHP
Executable file
15 lines
243 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require_once __DIR__ . '/_bootstrap.php';
|
|
|
|
$rc = 0;
|
|
echo 'Checking if ftp_ssl_connect() exists... ';
|
|
if (!function_exists('ftp_ssl_connect')) {
|
|
$rc = 1;
|
|
echo "NO!\n";
|
|
} else {
|
|
echo "yes.\n";
|
|
}
|
|
|
|
exit($rc);
|