I want to define an array in which only the keys are defined. Short of doing:
$templates_array['this'] = "";
$templates_array['that'] = "";
$templates_array['foo'] = "";
$templates_array['bar'] = "";
Is there a better way, syntactically? Maybe something like:
$templates_array[('this', 'that', 'foo', 'bar')] = "";
TIA