0
我已經搜索,但沒有發現任何與之相關的信息。我想知道如何使用多個數據創建一個cookie。如何在PHP中使用多個數據創建單個cookie?
我的數據是:
setcookie("domain", ".example.com");
setcookie("expirationDate", "1497384817");
setcookie("hostOnly", "false");
setcookie("httpOnly", "true");
但吃了幾塊餅乾正在創建的,而不是一個,我怎麼能解決此問題:
[
{
"domain": ".example.com",
"expirationDate": 1497384817,
"hostOnly": false,
"httpOnly": true,
"name": "download_security",
"path": "/down",
"sameSite": "no_restriction",
"secure": true,
"session": false,
"storeId": "0",
"value": "3lsod",
"id": 1
}
]
我在PHP與應用?