我想设置 $choice_1 和 $choice_2 但每个会话只设置一次。我正在使用 $choice_1 和 $choice_2 创建图像名称,并且我想避免在会话中绘制不同的 jpeg。我在http://communitychessclub.com/rabren展示了两个棋子,我希望这两个图像用于整个用户会话。
<?php
if (!isset($_SESSION['choice_1'])) {$chessmen = array("N","Q","R","B","K","P");
$random_piece = array_rand($chessmen);
$choice_1 = $chessmen[$random_piece];
unset($chessmen[$random_piece]);
$random_piece = array_rand($chessmen);
$choice_2 = $chessmen[$random_piece];}
?>