是否可以在PHP关联数组中执行计算?

时间:2014-01-20 02:05:46

标签: php arrays associative-array

我看到可以像这样计算关联数组中的值:

$testarray = array(
"x"=>2,
"y"=>5,
"z"=>(5*2);

 print_r($testarray); //Array ( [x] => 2 [y] => 5 [z] => 10 )

是否可以这样做:

$testarray = array(
"x"=>2,
"y"=>5,
"z"=>x*y);

1 个答案:

答案 0 :(得分:2)

没有。在定义数组之前,您无法访问数组的元素。