如何使用会话增加数组值
<?php
session_start();
$my_array=array(5,9,3);
$_SESSION['animals']=$my_array;
$_SESSION['animals'][0]= $_SESSION['animals'][0]+1;
echo "animals=". $_SESSION['animals'] [0];
$_SESSION['views']=$_SESSION['views']+1;
echo "Views=". $_SESSION['views'];
echo "<form method='post' action='realsession.php'>
<input type='submit'>
</form>";
?>
视图工作正常,每次我点击提交它都会增加 1。但是无论点击提交,动物都会给我 6。那么如何增加数组值呢?
谢谢