1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
<?php
class ClassExample {
const define = "test";
const callable = "test", trait = "test";
const extends = "test";
const implements = "test";
const static = "test";
const abstract = "test";
const final = "test";
const public = "test";
const protected = "test";
const private = "test";
const const = "test";
const enddeclare = "test";
const endfor = "test";
const endforeach = "test";
const endif = "test";
const endwhile = "test";
const and = "test";
const global = "test";
const goto = "test";
const instanceof = "test";
const insteadof = "test";
const interface = "test";
const namespace = "test";
const new = "test";
const or = "test";
const xor = "test";
const try = "test";
const use = "test";
const var = "test";
const exit = "test";
const list = "test";
const clone = "test";
const include = "test";
const include_once = "test";
const throw = "test";
const array = "test";
const print = "test";
const echo = "test";
const require = "test";
const require_once = "test";
const return = "test";
const else = "test";
const elseif = "test";
const default = "test";
const break = "test";
const continue = "test";
const switch = "test";
const yield = "test";
const function = "test";
const if = "test";
const endswitch = "test";
const finally = "test";
const for = "test";
const foreach = "test";
const declare = "test";
const case = "test";
const do = "test";
const while = "test";
const as = "test";
const catch = "test";
const die = "test";
const self = "test";
const parent = "test";
const __CLASS__ = "test";
const __TRAIT__ = "test";
const __FUNCTION__ = "test";
const __METHOD__ = "test";
const __LINE__ = "test";
const __FILE__ = "test";
const __DIR__ = "test";
const __NAMESPACE__ = "test";
}
|