BaiduCookieStore::__construct PHP Method

__construct() public method

Consturctor
public __construct ( string $clientId, string $domain = '' )
$clientId string App's client id.
$domain string The domain where to save the session cookie.
    public function __construct($clientId, $domain = '')
    {
        parent::__construct($clientId);
        $this->domain = $domain;
        header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM"');
    }