Jump to content

[SOLVED] "Loading" a config file of sorts?


OldWolf

Recommended Posts

Ok, here's my set up:

 

I have a class that holds all my configuration settings.  What I want to do is have a method called "load" which will load up a file full of configurations.

$config->load('path/file.php');

 

My question is, what's the best method I could use for load, and how should the config file be formatted accordingly?  Everything I've tried has seemed pretty hacked.

 

 

Here's an example of one of my ideas... but I'm not fond of it:

public function load_file($file)
{
	require_once($this->path . $file);

	$this->entries = array_merge($config, $this->entries);

	return true;
}

 

And the file:

$config = array(
'use_db_sessions'	=> true,
'allow_active_sessions'			=> '5',
'db_session_salt'		=>	'This is some yummy salt!',

'guest_id'		=>	0,
'cookie_path'	=>	'/',
'cookie_domain'	=>	'',

'use_persistent_login'	=>	true
);

 

 

As I said, very hacky... is there a cleaner way to do this.  Please and thanks.  :)

Link to comment
https://forums.phpfreaks.com/topic/135769-solved-loading-a-config-file-of-sorts/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.