如何将数组()传递给php中的另一个页面?

时间:2015-05-15 18:27:28

标签: 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。 有可能吗?

0 个答案:

没有答案