C++ preprocessor #define is totally different.
Is the PHP define() any different than just creating a var?
define("SETTING", 0);
$something = SETTING;
vs
$setting = 0;
$something = $setting;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
‘define’ operation itself is rather slow – confirmed by xdebug profiler.
Here is benchmarks from http://t3.dotgnu.info/blog/php/my-first-php-extension.html:
pure ‘define’
380.785 fetches/sec
14.2647 mean msecs/first-response
constants defined with ‘hidef’ extension
930.783 fetches/sec
6.30279 mean msecs/first-response
broken link update
The blog post referenced above has left the internet. It can still be viewed here via Wayback Machine. Here is another similar article.
The libraries the author references can be found here (apc_define_constants) and here (hidef extension).