Prestashop
我被困在饼干的一个问题上。在 prestashop 1.4.7 中,我使用 setcookie 创建了一个自定义 cookie 变量,但是当我尝试在前端控制器上访问和分配它时,我没有得到 cookie 设置值。这是我的脚本:
页面:checkpostcode.php
include(dirname(__FILE__).'/config/config.inc.php');
include(dirname(__FILE__).'/init.php');
global $cookie;
setcookie("is_postcode_checked", 1, time()+600, "/", "", 1); // Set the cookie in basepath
在 frontcontroller.php 页面上:
我使用它访问它$_COOKIE
并将其分配到 smarty 数组中。
'is_postcode_checked' => $_COOKIE['is_postcode_checked'] // Getting null value for cookie
页面:checkpostcode.tpl
{$cookie->_get(postcode_checked_msg)} // here get the is_postcode_checked value but
但我无法获得is_postcode_checked
变量值。