本文整理匯總了PHP中cookie::check_cookie方法的典型用法代碼示例。如果您正苦於以下問題:PHP cookie::check_cookie方法的具體用法?PHP cookie::check_cookie怎麽用?PHP cookie::check_cookie使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cookie
的用法示例。
在下文中一共展示了cookie::check_cookie方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: SQLite3
* If yes, then redirect to create.php
*/
if (sqlite_file == '' || !file_exists(sqlite_file)) {
$htmlinst->change_location("./create.php");
}
$_SERVER['REMOTE_ADDR'] = $util->get_client_ip($_SERVER);
$phpFiglet->loadFont("./figlet/spliff.flf");
$db = new SQLite3(sqlite_file, SQLITE3_OPEN_READWRITE);
$title = $db->query("SELECT Name, Value FROM Options WHERE Name='title';");
$title = $title->fetchArray(SQLITE3_ASSOC);
/*
* Check if user have old_skkooll cookie
* If yes, then give appropriate privilege to user through cookie::check_cookie function
*/
if (isset($_COOKIE['old_skkooll'])) {
$cook_book = $cook->check_cookie($_COOKIE['old_skkooll'], random_str, $db);
}
?>
<link rel="stylesheet" href="./style.css" />
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type='text/javascript' src="./js/jquery.imagefit-0.2.js"></script>
<script type="text/javascript" src="./js/jstz.min.js"></script>
<script type='text/javascript' src="./js/script.js"></script>
<script type='text/javascript'>
// to get appropriate timezone for visitor
// then set it up into cookie 'timezone'
var timezone = jstz.determine();
setCookie('timezone', timezone.name(), 7);
</script>