mirror of
https://github.com/php/php-src.git
synced 2026-04-17 04:51:03 +02:00
19 lines
360 B
PHP
19 lines
360 B
PHP
--TEST--
|
|
Bug #74737: Incorrect ReflectionFunction information for mysqli_get_client_info
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
?>
|
|
--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--
|
|
0
|
|
0
|