mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
14 lines
266 B
PHP
14 lines
266 B
PHP
--TEST--
|
|
ReflectionExtension::getConstants()
|
|
--SKIPIF--
|
|
<?php extension_loaded('reflection') or die('skip'); ?>
|
|
--FILE--
|
|
<?php
|
|
$ext = new ReflectionExtension("standard");
|
|
$consts = $ext->getConstants();
|
|
var_dump($consts["CONNECTION_NORMAL"]);
|
|
?>
|
|
--EXPECT--
|
|
int(0)
|
|
|