HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: //usr/src/php-7.2.34/tests/classes/constants_comments_001.phpt
--TEST--
Class constants and doc comments
--INI--
opcache.save_comments=1
--FILE--
<?php
class X {
	/** comment X1 */
	const X1 = 1;
	const X2 = 2;
	/** comment X3 */
	const X3 = 3;
}
class Y extends X {
	/** comment Y1 */
	const Y1 = 1;
	const Y2 = 2;
	/** comment Y3 */
	const Y3 = 3;
}
$r = new ReflectionClass('Y');
foreach ($r->getReflectionConstants() as $rc) {
	echo $rc->getName() . " : " . $rc->getDocComment() . "\n";
}


?>
--EXPECT--
Y1 : /** comment Y1 */
Y2 : 
Y3 : /** comment Y3 */
X1 : /** comment X1 */
X2 : 
X3 : /** comment X3 */