<?php const int = "int"; const foo = "foo"; function int($a) { return "13"; } function foo($a) { return "14"; } var_dump((int)("12")); var_dump((foo)("12"));
You have javascript disabled. You will not be able to edit any code.