外部の PHP ページに prestashop の顧客 ID を表示する必要があります。
公式ドキュメントhttp://doc.prestashop.com/display/PS15/Diving+into+PrestaShop+Core+development )
私はphpコードを見つけました:
PrestaShop 以外のコードから PrestaShop Cookie にアクセスする必要がある場合は、次のコードを使用できます。
include_once('path_to_prestashop/config/config.inc.php');
include_once('path_to_prestashop/config/settings.inc.php');
include_once('path_to_prestashop/classes/Cookie.php');
$cookie = new Cookie('ps'); // Use "psAdmin" to read an employee's cookie.
だから私は試しました:
include_once('config/config.inc.php');
include_once('config/settings.inc.php');
include_once('classes/Cookie.php');
$cookie = new Cookie('ps');
$id_client = $cookie->id_customer;
echo $id_client;
しかし、何も表示されません。他のトークンを試しましたが、「date_add」のみが機能します
コードの何が問題になっていますか?