summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/014.phpt
blob: c61403872ea05dd0cca12633d74d5d28aa2f84af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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)