mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
33 lines
673 B
PHP
33 lines
673 B
PHP
--TEST--
|
|
Check that bad arguments return the same
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$funcs = get_extension_funcs("intl");
|
|
function ignore_err() {}
|
|
set_error_handler("ignore_err");
|
|
$arg = new stdClass();
|
|
foreach($funcs as $func) {
|
|
$rfunc = new ReflectionFunction($func);
|
|
if($rfunc->getNumberOfRequiredParameters() == 0) {
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
$res = $func($arg);
|
|
} catch (Exception $e) {
|
|
continue;
|
|
} catch (Error $e) {
|
|
continue;
|
|
}
|
|
if($res != false) {
|
|
echo "$func: ";
|
|
var_dump($res);
|
|
}
|
|
}
|
|
echo "OK!\n";
|
|
?>
|
|
--EXPECT--
|
|
OK!
|