阅读下列PHP脚本,分别写出变量a、b、c、d、e、f、g、h的值。<?phpfunction double($i){ return $i*2;}$b = $a = 8; $c = $a++; $e = $d = ++$b; $f = double($d++); $g = double(++$e); $h = $g += 9; ?> 大佬帮忙一下