ローカルホストを使用している場合は、これを試すことができます。 前/コントローラ/共通/ header.phpの
をカタログする または同じホスティングアカウントまたはcPanelの
ゴー "パブリック関数指数(){" このコード
class ControllerCommonHeader extends Controller {
public function index() {
session_start();
$_SESSION['opencart'] = $this->session->data;
を追加します。
アレイを印刷する必要がありますhttp://localhost/testphp
コード:
<?php
session_start();
echo '<pre>';
print_r($_SESSION);
echo '</pre>';
?>
あなたの出力は
Array
(
[opencart] => Array
(
[language] => en-gb
[currency] => USD
[customer_id] => 2
[shipping_address] => Array
(
[address_id] => 2
[firstname] => Prashant
[lastname] => Bhagat
[company] =>
[address_1] => Surat
[address_2] =>
[postcode] => 395003
[city] => Surat
[zone_id] => 1485
[zone] => Gujarat
[zone_code] => GU
[country_id] => 99
[country] => India
[iso_code_2] => IN
[iso_code_3] => IND
[address_format] =>
[custom_field] =>
)
)
)
OpenCartデータベース内の 'customer_online'テーブルがあるだろう。 'admin \ model \ report \ customer.php'の' getCustomersOnline'関数を見てください。 – DigitCart