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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.