+ 2
What is the difference between define and const in php?
2 Answers
+ 2
"The fundamental difference between those two ways is that const defines constants at compile time, whereas define defines them at run time."
source: http://stackoverflow.com/questions/2447791/define-vs-const
+ 2
thanks.