本文整理汇总了PHP中Front::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Front::__construct方法的具体用法?PHP Front::__construct怎么用?PHP Front::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Front
的用法示例。
在下文中一共展示了Front::__construct方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
if (config_item('require_login')) {
\CI::Login()->isLoggedIn('checkout');
}
$this->customer = \CI::Login()->customer();
}
示例2: __construct
public function __construct()
{
// ob_start();//解决setcookie Cannot modify header information - headers already sent by
header("Content-type:text/html;charset=utf-8");
header("Cache-Control: no-cache, must-revalidate");
//HTTP 1.1
header("Pragma: no-cache");
//HTTP 1.0
// header("Cache-Control: max-age=3600");
parent::__construct();
// header(("Last-Modified:" . gmdate("D,d M Y H:i:s") . "GMT"));
// if (!isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) + 32400 < time()) {
// header(("Last-Modified:" . gmdate("D,d M Y H:i:s") . "GMT"));
// } else {
// header("HTTP/1.1 304");
// exit;
// }
}
示例3:
function __construct()
{
parent::__construct();
$this->loadModel('Pictures');
$this->loadModel('Users');
}
示例4:
function __construct()
{
parent::__construct();
$this->loadModel('Contacts');
}
示例5: __construct
public function __construct()
{
parent::__construct();
\CI::lang()->load('cod');
}
示例6: __construct
public function __construct()
{
parent::__construct();
\CI::load()->model(array('Locations'));
$this->customer = \CI::Login()->customer();
}
示例7: __construct
public function __construct()
{
parent::__construct();
$this->customer = \CI::Login()->customer();
}