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