我有一个我正在尝试拆分的 cookie。cookie 采用以下格式:
key = val1,val2,val3(每个值用逗号分隔)
有没有办法让我把它分成一个循环,以便我可以直接访问 val3?
我试过使用explode() 函数没有成功。
for ($i = 0; $i < count($_COOKIE); $i++)
{
$ind = key($_COOKIE);
$data = $_COOKIE[$ind];
//I try and slit the cookie here
$cookie_temp = explode(",",$_COOKIE[$ind]);
//Here is where I wanted to display Val3 from the cookie
print $cookie_temp[2];
next($_COOKIE);
}
我的代码工作正常,但我最终将我所有的 Val3 放在一个大数组中。例如,我的 val3 是数字,它们被放入一个数组中。我可以进一步拆分吗?