mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
13 lines
297 B
PHP
13 lines
297 B
PHP
--TEST--
|
|
ReflectionExtension::getVersion()
|
|
--CREDITS--
|
|
Gerrit "Remi" te Sligte <remi@wolerized.com>
|
|
Leon Luijkx <leon@phpgg.nl>
|
|
--FILE--
|
|
<?php
|
|
$obj = new ReflectionExtension('reflection');
|
|
$var = $obj->getVersion() ? $obj->getVersion() : null;
|
|
var_dump($var);
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "%d.%d.%s"
|