1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 00:18:23 +02:00
Files
archived-php-src/ext/intl/tests/badargs.phpt
T
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

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!