I use a lot of constantes
in php to save information to configure the system
Example:
define('_CONFIG_SERVER','PC\SQLEXPRESS');
define('_CONFIG_DATA','Database');
define('_CONFIG_NAME','localhost');
define('_CONFIG_LANGUAGE_DEFAULT','pt-BR');
I really use it ... This can slow down the system performance?
I found a topic similar, but does not answer my question that in this case is the performance issue!