mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
16 lines
329 B
PHP
16 lines
329 B
PHP
--TEST--
|
|
Bug #75307 Wrong reflection for openssl_open function
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("openssl")) die("skip openssl not available");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$rf = new ReflectionFunction('openssl_open');
|
|
var_dump($rf->getNumberOfParameters());
|
|
var_dump($rf->getNumberOfRequiredParameters());
|
|
?>
|
|
--EXPECT--
|
|
int(6)
|
|
int(4)
|