I want do like this:
$m_array = array();
foreach ($values as $key) { <- $key is just string
array_push ( $m_array, $key => array() );
}
/////result
$m_array = array(
"key1" => array(),
"key2" => array(),
....
);
How to do this?
Please help me.
I use PHP.