当前位置: 首页>>代码示例>>PHP>>正文


PHP Cookie::path方法代码示例

本文整理汇总了PHP中Cookie::path方法的典型用法代码示例。如果您正苦于以下问题:PHP Cookie::path方法的具体用法?PHP Cookie::path怎么用?PHP Cookie::path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Cookie的用法示例。


在下文中一共展示了Cookie::path方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: init

 /**
  * @param array $opts Array of options. Supported keys:<ul>
  *              <li>'path' - The path on the server in which the cookie will be available on.
  *                         If set to '/', the cookie will be available within the entire domain.
  *                         If set to '/foo/', the cookie will only be available within the /foo/ directory and all sub-directories such as /foo/bar/ of domain.
  *                         Default value is: /<br>
  *              <li>'domain' - The domain that the cookie is available to.
  *                           Setting the domain to 'www.example.com' will make the cookie available in the www subdomain and higher subdomains.
  *                           Cookies available to a lower domain, such as 'example.com' will be available to higher subdomains, such as 'www.example.com'.
  *                           Older browsers still implementing the deprecated » RFC 2109 may require a leading . to match all subdomains.
  *                           Default value is '.' + $_SERVER['SERVER_NAME'] [www is omitted]<br>
  *              <li>'prefix' - Prefix for cookies. See: self::$prefix
  */
 public static function init(array $opts = array())
 {
     if (self::$inited) {
         return;
     }
     if (isset($opts['path']) and (string) $opts['path']) {
         self::$path = (string) $opts['path'];
     }
     if (isset($opts['prefix'])) {
         self::$prefix = (string) $opts['prefix'];
     }
     if (isset($opts['domain']) and (string) $opts['domain']) {
         self::$domain = (string) $opts['domain'];
     } else {
         self::$domain = $_SERVER['SERVER_NAME'];
         self::$domain = '.' . preg_replace('#^www\\.#', '', strtolower(self::$domain));
     }
     self::$secure = (isset($_SERVER['HTTPS']) and strtolower($_SERVER['HTTPS']) == 'on');
 }
开发者ID:xiaoweidotnet,项目名称:Cookie,代码行数:32,代码来源:Cookie.php

示例2: array

# copy config/init.php.default to config/init.php
Kohana::init(include APPPATH . 'config/init.php');
/**
 * Attach the file write to logging. Multiple writers are supported.
 */
Kohana::$log->attach(new Log_File(APPPATH . 'logs'));
/**
 * Attach a file reader to config. Multiple readers are supported.
 */
Kohana::$config->attach(new Config_File());
/**
 * Cookie config.
 */
$cookie = Kohana::$config->load('cookie');
Cookie::$salt = $cookie->salt;
Cookie::$expiration = $cookie->expiration;
Cookie::$domain = $cookie->domain;
Cookie::$path = $cookie->path;
Cookie::$secure = $cookie->secure;
Cookie::$httponly = $cookie->httponly;
/**
 * Enable modules. Modules are referenced by a relative or absolute path.
 */
Kohana::modules(array());
/**
 * Set the routes. Each route must have a minimum of a name, a URI and a set of
 * defaults for the URI.
 */
Route::set('api', '<directory>(/<controller>(/<action>(/<params>)))', array('params' => '.*', 'directory' => '(v1|v2)'))->defaults(array('controller' => 'defaults', 'action' => 'index', 'directory' => 'v1'));
Route::set('join', 'join')->defaults(array('controller' => 'auth', 'action' => 'join'));
Route::set('default', '(<controller>(/<action>(/<id>)))')->defaults(array('controller' => 'welcome', 'action' => 'index'));
开发者ID:rhrn,项目名称:apirn,代码行数:31,代码来源:bootstrap.php

示例3: constant

    HTTP::$protocol = $_SERVER['SERVER_PROTOCOL'];
}
/**
 * Set Kohana::$environment if a 'KOHANA_ENV' environment variable has been supplied.
 *
 * Note: If you supply an invalid environment name, a PHP warning will be thrown
 * saying "Couldn't find constant Kohana::<INVALID_ENV_NAME>"
 */
if (isset($_SERVER['KOHANA_ENV'])) {
    Kohana::$environment = constant('Kohana::' . strtoupper($_SERVER['KOHANA_ENV']));
}
Cookie::$salt = 'stourwebcms';
// 设置cookie 多久过期
Cookie::$expiration = 86400;
// 限制有效的cookie路径
Cookie::$path = '/';
// 限制可以访问cookie的域名
//Cookie::$domain = 'www.phpddt.com';
/**
 * Initialize Kohana, setting the default options.
 *
 * The following options are available:
 *
 * - string   base_url    path, and optionally domain, of your application   NULL
 * - string   index_file  name of your index file, usually "index.php"       index.php
 * - string   charset     internal character set used for input and output   utf-8
 * - string   cache_dir   set the internal cache directory                   APPPATH/cache
 * - integer  cache_life  lifetime, in seconds, of items cached              60
 * - boolean  errors      enable or disable error handling                   TRUE
 * - boolean  profile     enable or disable internal profiling               TRUE
 * - boolean  caching     enable or disable internal caching                 FALSE
开发者ID:lz1988,项目名称:stourwebcms,代码行数:31,代码来源:bootstrap.php


注:本文中的Cookie::path方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。