Şu anda ben bu kodu var.
<?php
error_reporting(E_ALL);
require_once('content_config.php');
function callback($buffer)
{
// replace all the apples with oranges
foreach ($config as $key => $value)
{
$buffer = str_replace($key, $value, $buffer);
}
return $buffer;
}
ob_start("callback");
?>
some content
<?php
ob_end_flush();
?>
content_config.php dosyasında:
$config['SiteName'] = 'MySiteName';
$config['SiteAuthor'] = 'thatGuy';
Ne yapmak istiyorum ben onun değeri ile yapılandırma dizinin tuşu ile bu tutucuları değiştirmek istiyor.
Şu anda, bu işe yaramazsa: (