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;
|
|
|
'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:
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). |
||||
|
|
|
Here are the differences, from the manual
For me, the main benefit is the global scope. I certainly don't worry about their efficiency - use them whenever you need a global scalar value which should not be alterable. |
|||
|
|
|
In general, the idea of a constant is to be constant, (Sounds funny, right? ;)) inside your program. Which means that the compiler (interpreter) will replace "FOOBAR" with FOOBAR's value throughout your entire script. So much for the theory and the advantages - if you compile. Now PHP is pretty dynamic and in most cases you will not notice a different because the PHP script is compiled with each run. Afai-can-tell you should not see a notable difference in speed between constants and variables unless you use a byte-code cache such as APC, Zend Optimizer or eAccelerator. Then it can make sense. All other advantages/disadvantages of constants have been already noted here and can be found in the PHP manual. |
|||
|
|
0.00689506530762
0.00941896438599 This is repeatable with similar results. It looks to me like constants are a bit slower to define and/or use than variables. |
|||
|
|
|
Define is simple static sense, meaning its value can't be changed during runtime while variable is dynamic sense because you can freely manipulate its value along the process. |
|||
|
|
|
NOT efficient it appears. (And i'm basing all the assumptions here on one comment from php.net, i still haven't did the benchmarks myself.) recalling a constant, will take 2x the time of recalling a variable. checking the existence of a Constant will take 2ms and 12ms for a false positive! Here's a benchmark from the comments of the define page in php's online doc.
from tris+php at tfconsulting dot com dot au 26-Mar-2009 06:40 |
|||
|
|
|
Main differences:
|
||||
|
|
|
When I run speed tests, constants being set and dumped out run much a little faster than setting variables and dumping them out. |
|||
|
|
|
Not sure about efficiency, but it is more than creating a var:
|
|||
|
|