Heello,我正在用PHP编写一个脚本,我需要与ASP.Net兼容。
当您在ASP.Net中使用cookie作为数组/字典时,它将生成如下cookie:
Set-Cookie: examplecookie=name=test&secret=blahh&expire=1341130948; path=/; HttpOnly
但是,PHP的内置cookie /字典功能似乎为每个键/值保存了单独的cookie。
在我编写脚本以将数组序列化为类似的内容之前......有没有内置的方法来做这样的事情?