Je ne trouve aucun exemple, dans des livres ou sur le Web, décrivant comment initialiser correctement un tableau associatif par son nom uniquement (avec des valeurs vides) - à moins, bien sûr, que ce ne soit la bonne manière (?)
Il me semble qu’il existe un autre moyen plus efficace de procéder:
config.php
class config {
public static $database = array (
'dbdriver' => '',
'dbhost' => '',
'dbname' -> '',
'dbuser' => '',
'dbpass' => ''
);
}
// Is this the right way to initialize an Associative Array with blank values?
// I know it works fine, but it just seems ... longer than necessary.
index.php
require config.php
config::$database['dbdriver'] = 'mysql';
config::$database['dbhost'] = 'localhost';
config::$database['dbname'] = 'test_database';
config::$database['dbuser'] = 'testing';
config::$database['dbpass'] = 'P@$$w0rd';
// This code is irrelevant, only to show that the above array NEEDS to have Key
// names, but Values that will be filled in by a user via a form, or whatever.
Toute recommandation, suggestion ou direction serait appréciée. Merci.