blob: 071f3ad746dee16f7779dc8f5b910a1772e0637e (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
ReflectionExtension::getConstants()
--FILE--
<?php
$ext = new ReflectionExtension("standard");
$consts = $ext->getConstants();
var_dump($consts["CONNECTION_NORMAL"]);
?>
--EXPECT--
int(0)
|