Searched refs:get_defined_constants (Results 1 – 11 of 11) sorted by relevance
2 Test get_defined_constants() function : basic functionality5 /* Prototype : array get_defined_constants ([ bool $categorize ] )10 echo "*** Testing get_defined_constants() : basic functionality ***\n";12 var_dump(gettype(get_defined_constants(true)));13 var_dump(gettype(get_defined_constants()));15 $arr1 = get_defined_constants(false);16 $arr2 = get_defined_constants();19 $n1 = count(get_defined_constants());21 $arr2 = get_defined_constants();33 *** Testing get_defined_constants() : basic functionality ***
2 Bug #65291 - get_defined_constants() causes PHP to crash in a very limited case.19 get_defined_constants();20 get_defined_constants(true);
21 var_dump(get_defined_constants(true, true));22 var_dump(gettype(get_defined_constants(true)));23 var_dump(gettype(get_defined_constants()));24 var_dump(count(get_defined_constants()));62 Warning: get_defined_constants() expects at most 1 parameter, 2 given in %s on line %d
5 $defined_constants = get_defined_constants(true);
12 $c = get_defined_constants(true);
10 $constants = get_defined_constants(true);
138 $constants = get_defined_constants();
17 $constants = get_defined_constants(true);
14 foreach(get_defined_constants() as $constantName => $constantValue) {
45 array_keys(get_defined_constants())
77 static ZEND_FUNCTION(get_defined_constants);291 ZEND_FE(get_defined_constants, arginfo_get_defined_constants)2035 ZEND_FUNCTION(get_defined_constants) in ZEND_FUNCTION() argument
Completed in 26 milliseconds