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