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 trialEzra John Alvarez
557 Pointsvariable 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
manuelpenaloza
Courses Plus Student 10,543 Pointsyes, 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);
Ezra John Alvarez
557 PointsThanks manuel!
manuelpenaloza
Courses Plus Student 10,543 Pointsyou're welcome