mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
20 lines
346 B
PHP
20 lines
346 B
PHP
--TEST--
|
|
Phar: bug #74383: Wrong reflection on Phar::running
|
|
--EXTENSIONS--
|
|
phar
|
|
--FILE--
|
|
<?php
|
|
$rc = new ReflectionClass(Phar::class);
|
|
$rm = $rc->getMethod("running");
|
|
echo $rm->getNumberOfParameters();
|
|
echo PHP_EOL;
|
|
echo $rm->getNumberOfRequiredParameters();
|
|
echo PHP_EOL;
|
|
echo (int) $rm->getParameters()[0]->isOptional();
|
|
|
|
?>
|
|
--EXPECT--
|
|
1
|
|
0
|
|
1
|