0

我有使用 Header('Location: ...') 进行重定向的普通 php 脚本,我需要向 cakePHP 发送一个数组(6 个键和 6 个值单元格,每个单元格大约 20 个字符)。

我尝试使用“session_start()”,但我无法连接到会话变量。我不能使用 _GET 因为 URL 必须清楚。也许 POST 是一个选项,但我不确定如何在 Header 请求期间发送数据。

4

1 回答 1

0

Try this

$arr = array('this'=>'is', 'some'=>'stuff');
$url = 'someurl.php?vals=' . url_encode(serialize($arr));
header("Location: $url");
于 2013-08-21T10:19:03.397 回答