How do I write this code correctly? The fourth line, I want to use the values of the two first keys all within the same array.
$pixel_percents = array(
"complete"=>.5 * 768,
"wip"=>round(.2 * 768, 0, PHP_ROUND_HALF_DOWN),
"remain"=>$pixel_percents["complete"] - $pixel_percents["wip"]
);