What is the fastest way to store config data in PHP so that it is easily changeable (via PHP)? First I thought about having config.php file, but I can\'t edit it on fly with
If you use require instead of include for the config file you will gain a little bit of performance. You can do this if you know that the config file will always be in place, or when you have your own mechanism for checking if it exists.