1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/run-test/extensions-shared.phpt

21 lines
551 B
PHP

--TEST--
phpt EXTENSIONS directive - shared module
--EXTENSIONS--
openssl
--SKIPIF--
<?php
$php = getenv('TEST_PHP_EXECUTABLE_ESCAPED');
if (false !== stripos(shell_exec("$php -n -m"), 'openssl')) {
die('skip openssl is built static');
}
$ext_module = ini_get('extension_dir') . DIRECTORY_SEPARATOR . (substr(PHP_OS, 0, 3) === "WIN" ? "php_openssl." : "openssl.") . PHP_SHLIB_SUFFIX;
if( !file_exists($ext_module) ) die('skip openssl shared extension not found');
?>
--FILE--
<?php
var_dump(extension_loaded('openssl'));
?>
--EXPECT--
bool(true)