我正在使用php / noloh创建一个tic tac toe游戏。 NONE是一个定义为-1的常量。
// Set up an empty
$this->grid = array();
for ( $y = 0; $y < 3; $y++ ) {
for ( $x = 0; $x < 3; $x++ ) {
$this->grid[y][x] = NONE;
}
}
System::Alert($this->grid[0][0]);
系统警报只显示一条空信息。我猜,显然没有任何内容。我做错了什么?