Voting

: max(seven, three)?
(Example: nine)

The Note You're Voting On

Jamie
14 years ago
This is obvious, but easy to forget: if you include a file, the include file can only make use of constants already defined. For example:

<?php
define
("VEG","cabbage");
require(
"another file");
define("FRUIT","apple");

// "another file":
echo VEG; // cabbage
echo FRUIT; // FRUIT
?>

<< Back to user notes page

To Top