ru_php/ext/mysqli/tests/bug74737.phpt

16 lines
333 B
PHP

--TEST--
Bug #74737: Incorrect ReflectionFunction information for mysqli_get_client_info
--EXTENSIONS--
mysqli
--FILE--
<?php
$client_info = mysqli_get_client_info();
$rf = new ReflectionFunction('mysqli_get_client_info');
echo $rf->getNumberOfParameters();
echo PHP_EOL;
echo $rf->getNumberOfRequiredParameters();
?>
--EXPECT--
1
0