summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/014.phpt
blob: 8b5955f12487a97779a804c5c635b9e6296e1d51 (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)