PHP 8.2.20 Released!

Voting

: max(six, nine)?
(Example: nine)

The Note You're Voting On

dachnik
14 years ago
You can define values in your config file using the names of your defined constants, e.g.

in your php code:
define("MY_CONST",999);

in you config file:
my = MY_CONST

When reading the file do this:

$my = constant($value); // where $value is the string "MY_CONST"

now $my holds the value of 999

<< Back to user notes page

To Top