Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有使用 Header('Location: ...') 进行重定向的普通 php 脚本,我需要向 cakePHP 发送一个数组(6 个键和 6 个值单元格,每个单元格大约 20 个字符)。
我尝试使用“session_start()”,但我无法连接到会话变量。我不能使用 _GET 因为 URL 必须清楚。也许 POST 是一个选项,但我不确定如何在 Header 请求期间发送数据。
Try this
$arr = array('this'=>'is', 'some'=>'stuff'); $url = 'someurl.php?vals=' . url_encode(serialize($arr)); header("Location: $url");