actually the ternary operator x ? y : z; is faster than an if statement
so use this and it is even faster
$config['base_url'] = ($_SERVER['HTTP']=='localhost') ?
'http://localhost/path/to/local/folder/' : // local base url
'http://www.server.tld/path/to/online/folder/'; // live base urlmaybe not quite as readable however although the commenting helps