mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
11 lines
217 B
PHP
11 lines
217 B
PHP
--TEST--
|
|
Bug #70960 (ReflectionFunction for array_unique returns wrong number of parameters)
|
|
--FILE--
|
|
<?php
|
|
|
|
$ref = new ReflectionFunction('array_unique');
|
|
var_dump(count($ref->getParameters()));
|
|
?>
|
|
--EXPECT--
|
|
int(2)
|