本文整理汇总了PHP中Cookie::get_cookie方法的典型用法代码示例。如果您正苦于以下问题:PHP Cookie::get_cookie方法的具体用法?PHP Cookie::get_cookie怎么用?PHP Cookie::get_cookie使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cookie
的用法示例。
在下文中一共展示了Cookie::get_cookie方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Cookie
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Home work 4 (lesson 6)!</title>
<link rel="stylesheet" type="text/styles" href="css/style.css" />
<script language="JavaScript" src="_my_jav_scr.js">
<!--
//-->
</script>
</head>
<?php
//require_once 'unit.php' ;
//require 'unit.php' ;
include 'cookie.php';
$uni = new Cookie();
$uni->get_cookie();
示例2: is_auth
public function is_auth($key)
{
$key_stripped = preg_replace('/\\.+/', '_', $key);
if (!is_null(Cookie::get_cookie($key_stripped))) {
if (strlen($key_stripped) >= $this->auth_legal_len) {
return false;
throw new ShopifyApiException($this->shop, 'Auth Token Exception, not legal token', 0);
}
return true;
} else {
return false;
}
}