xref: /PHP-7.4/ext/reflection/tests/014.phpt (revision f1d7e3ca)
1--TEST--
2ReflectionExtension::getConstants()
3--FILE--
4<?php
5$ext = new ReflectionExtension("standard");
6$consts = $ext->getConstants();
7var_dump($consts["CONNECTION_NORMAL"]);
8?>
9--EXPECT--
10int(0)
11