Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP PHP Basics (Retired) PHP Datatypes PHP Constants

Ezra John Alvarez
Ezra John Alvarez
557 Points

variable inside define

Hello,

Is it possible to put a variable as the constant's value like:

$year = 2000;

define('YEAR', '$year');

Is this possible and legit?

2 Answers

yes, but you need to remove the ' surrounding the variable $year in the define() function so that the variable is seen as a variable and not as a string. So actually it then looks like this:

$year = 2000;
define('YEAR', $year);

you're welcome