多维数组不检索值

时间:2013-09-19 02:39:36

标签: php arrays

我正在使用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]);

系统警报只显示一条空信息。我猜,显然没有任何内容。我做错了什么?

0 个答案:

没有答案