如何以这种方式打印多个服务

时间:2015-09-19 06:34:16

标签: php arrays session

我想在php中打印两个结果

在文件A中

$_SESSION['cart']['prices'][] = array('1000');

$_SESSION['cart']['services'][] = array('game');

在文件B中

$_SESSION['cart']['prices'][] = array('2000');

$_SESSION['cart']['services'][] = array('game2');

在文件C中

foreach ($_SESSION['cart']['services'] as $key => $service) {
  echo $service . ' = ' . $_SESSION['cart']['prices'][$key] . '<br />';
}
  

ERROR E_NOTICE:类型8 - 数组到字符串转换 - 在回显线

0 个答案:

没有答案