Tuesday, 4 September 2018
Subscribe to:
Post Comments (Atom)
foreach ($array as &$value) $value = ''
$array = array_fill_keys(array_values($a),""); // Simple, right?
$array = array_map(function(){return "";},$a); // More flexible but easier to typo
foreach($a as $k => $v){
$a[$k] = "";
}
/* This variation is a little more dangerous, because $v will linger around
* and can cause bizarre bugs if you reuse the same variable name later on,
* so make sure you unset() it when you're done.
*/
foreach($a as $k => &$v){
$v = "";
}
unset($v);
Hello Friends! I am Ramana a part time blogger from Hyderabad.
0 comments:
Post a Comment