0

我的 php merge_array 有问题,我正在编写一个 cookie,它从 html 表单中的按钮获取元素 id,然后我制作了一个 cookie setcookie("info", $_REQUEST["ELEMENT_ID"]+1, time()+ 3600)。我想编写一个数组,将 $array1 与表单中的元素 id 和 $array2 合并,以获取 cookie 元素。当我单击页面上的购买按钮时出现问题,我总是在数组中有 2 个元素,新元素和 cookie 数组中的一个。Array ( [0] => [1] => Array ( [info] => 16 我正在寻找包含不止 2 个元素的数组 $result,这样我就可以使用 id 来获取姓名、照片和其他属性购物车

<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?>
<?
$array1=array($_REQUEST["ELEMENT_ID"]);

if(!isset($_COOKIE["info"])){
    setcookie("info", $_REQUEST["ELEMENT_ID"]+1, time()+3600);
    $w = $_REQUEST["ELEMENT_ID"]+1;
    print_r($_COOKIE);
}
echo"<br/>";
$array2=array($_COOKIE);
$result= array_merge($array1, $array2);
print_r($result);

?>

4

1 回答 1

0

编辑:

好的,现在我更好地理解了你想要做什么,这就是我的建议。由于您希望将历史数据存储在 cookie 中并且希望将其保存在一个数组中,因此您可以将数据存储为 cookie 中的序列化 id 数组。您现在要做的是获取当前的 ELEMENT_ID,向其中添加一个,然后将该值存储到 cookie 中,该 cookie 将覆盖已经存在的内容。所以我会用这个替换你所有的代码:

<?php
    // do your checks
    if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true) die();

    // 1: if cookie exists, grab the data out of it
    $historical_element_ids = array(); // initialize the variable as an array
    if(isset($_COOKIE['info'])){
        // retrieve the previous element ids as an array
        $historical_element_ids = unserialize($_COOKIE['info']);
    }

    // 2: add the new id to the list of ids (only if the id doesn't already exist)
    // the cookie will remain unchanged if the item already exists in the array of ids
    if(!in_array($_REQUEST['ELEMENT_ID'], $historical_element_ids)){
        $historical_element_ids[] = $_REQUEST['ELEMENT_ID']; // adds this to the end of the array

        // 3: set the cookie with the new serialized array of ids
        setcookie("info", serialize($historical_element_ids), time()+3600);
    }

    // display the cookie (should see a serialized array of ids)
    print_r($_COOKIE);
    echo"<br/>";

    // accessing the cookie's values
    $result = unserialize($_COOKIE['info']);
    print_r($result);
?>
于 2012-06-20T12:42:49.160 回答