Hey all,
I would like to take this:
$arr = array(
array("top"=>10, "left"=>10),
array("top"=>50, "left"=>30),
array("top"=>60, "left"=>70)
);
Run a function and have the result be:
array(
array("top"=>10, "left"=>10, "width"=>400),
array("top"=>50, "left"=>30, "width"=>400),
array("top"=>60, "left"=>70, "width"=>400)
);
Right now I'm looping through with a foreach loop. Is there a better way? The key/value can are always going to be the same.
Thanks! Matt Mueller