1--TEST--
2ReflectionConstant::getExtensionName()
3--EXTENSIONS--
4json
5--FILE--
6<?php
7
8$reflectionConstant = new ReflectionConstant('PHP_VERSION');
9var_dump($reflectionConstant->getExtensionName());
10
11$reflectionConstant = new ReflectionConstant('JSON_ERROR_NONE');
12var_dump($reflectionConstant->getExtensionName());
13
14const CT_CONST = 5;
15$reflectionConstant = new ReflectionConstant('CT_CONST');
16var_dump($reflectionConstant->getExtensionName());
17
18define('RT_CONST', 6);
19$reflectionConstant = new ReflectionConstant('RT_CONST');
20var_dump($reflectionConstant->getExtensionName());
21?>
22--EXPECT--
23string(4) "Core"
24string(4) "json"
25bool(false)
26bool(false)
27