You are here

public static function secureCookieBasic::get_domain in Secure Cookie Data 7.2

Same name and namespace in other branches
  1. 7 secure_cookie_data.class.inc \secureCookieBasic::get_domain()

Get the current cookie domain.

Return value

string The cookie domain.

2 calls to secureCookieBasic::get_domain()
secureCookieBasic::delete in ./secure_cookie_data.class.inc
Destroyer for the class. Deletes the data cookie if it exists.
secureCookieBasic::set in ./secure_cookie_data.class.inc
Setter for the class.

File

./secure_cookie_data.class.inc, line 53
secure_cookie.class.inc @author António P. P. Almeida <appa@perusio.net> @date Wed Dec 21 03:17:53 2011

Class

secureCookieBasic

Code

public static function get_domain() {
  return ini_get('session.cookie_domain');
}