PHP session array

前端 未结 4 1251
悲哀的现实
悲哀的现实 2020-12-22 03:20

how can i store this array into a session and use sessions to move the elements inside the array up/down/left/right diagonally

$board = array(A B C D E F G H         


        
4条回答
  •  感动是毒
    2020-12-22 04:01

    You store it in a session like

    As for manipulation, it is just a normal array. You can work with it like any other array.

提交回复
热议问题