标签: php arrays
所以我想将一个数组传递给另一个页面以便以后使用它。 我的代码
<?php code(1,2); code(1,3); function code($row,$col) { $z = rand(65,90); $letter[$row][$col] = chr($z);//I want to pass this array. } ?>
现在我想在另一个页面中访问$letter。 有可能吗?
$letter