You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
const C_I = 11;
|
|
const C_F = 1.1;
|
|
const C_S = "str";
|
|
const C_B = true;
|
|
const C_N = null;
|
|
//const C_A = [1, 2, 3];
|
|
//const C_O = new stdClass();
|
|
|
|
const C_I2 = -C_I;
|
|
const C_F2 = C_F * 2;
|
|
const C_S2 = "hello";
|
|
|
|
function main()
|
|
{
|
|
var_dump(get_defined_constants());
|
|
}
|
|
|
|
|