3
I have created a file containing patterns that are used in my system. I would like to know what is the difference in performance between calling the code by a include
or by a constante
thus:
//código do incluir.php: <a href=""></a>
include "incluir.php";
define('_CONSTANT','<a href=""></a>');
Has some advantage in using one and the other?
I ask this because I am in doubt if using one or the other can affect the performance of my system, since I use it enough to pick up standard codes