PHP expert |
|
<?php
$file = 'config.php';
$file_content = '<?php $_CONFIG = array(';
/* Vanaf hier config dingen erin zetten */
$file_content .= $config_key . ' => ' . $config_value . ',';
// etc
/* config file afmaken */
$file_content = substr($file_content, 0, -1); // laatste komma eraf halen
$file_content .= '); ?>';
file_put_contents($file, $file_content);
<?php $file = 'config.php'; $file_content = '<?php $_CONFIG = array('; /* Vanaf hier config dingen erin zetten */ $file_content .= $config_key . ' => ' . $config_value . ','; // etc /* config file afmaken */ $file_content = substr($file_content, 0, -1); // laatste komma eraf halen $file_content .= '); ?>'; file_put_contents($file, $file_content);
Zoiets, waarbij je dan variabelen uit de database in de config array zet. Je include dan dit bestand in je pagina, en dan kan je je configuratie met $_CONFIG aanspreken
|