-
- /** Cookies クラス Cookie データを保存、読み取り、更新、クリアします。プレフィックスを設定できます。強制タイムアウト。データは文字列、配列、オブジェクトなどです。
- * 日付: 2013-12-22
- * 著者: fdipzone
- * バージョン: 1.0
- * 編集: bbs.it-home.org
- * Func:
- * public set Cookie の設定
- * public get Cookie の読み取り
- * public update Cookie の更新
- * public clear Cookie のクリア
- * public setPrefix プレフィックスの設定
- * public setExpire 有効期限の設定
- * private authcode 暗号化/復号化
- * private パックパックデータ
- * private unpack アンパックデータ
- * private getName Cookie 名を取得、プレフィックスを追加処理
- */
-
- class Cookies{ // クラス開始
- private $_prefix = ''; // Cookie プレフィックス
- private $_securekey = 'ekOt4_Ut0f3XE-fJcpBvRFrg506jpcuJeixezgPNyALm' // 暗号化キー
- private $_expire = 3600 ; // デフォルト期限切れ
-
- /**初期化
- * @param String $prefix クッキープレフィックス
- * @param int $expire 有効期限
- * @param String $securekey クッキーセキュアキー
- */
- public function __construct($prefix='', $expire=0, $securekey=''){
-
- if(is_string($prefix) && $prefix !='' ){
- $this->_prefix = $prefix;
- }
-
- if(is_numeric($expire) && $expire>0){
- $this->_expire = $expire }
-
- if(is_string( $securekey) && $securekey!=''){
- $this->_securekey = $securekey; }
- }
-
- /**Cookie を設定します
- * @param String $name Cookie 名
- * @parammixed $value Cookie の値は文字列、配列、オブジェクトなどにすることができます
- * @param int $expire 有効期限
- */
- public function set($name, $ value, $expire =0){
-
- $cookie_name = $this->getName($name);
- $cookie_expire = time() + ($expire? $expire : $this->_expire);
- $cookie_value = $this- >pack($value, $cookie_expire);
- $cookie_value = $this->authcode($cookie_value, 'ENCODE', $this->_securekey)
-
- if($cookie_name && $cookie_value && $cookie_expire) {
- setcookie($cookie_name, $cookie_value, $cookie_expire);
- }
- }
-
- /**读取cookie
- * @param String $name Cookie名
- * @return 混合Cookie値
- */
- public function get($name){
-
- $cookie_name = $this-> ;getName($名前);
-
- if(isset($_COOKIE[$cookie_name])){
-
- $cookie_value = $this->authcode($_COOKIE[$cookie_name], 'DECODE', $this-> _securekey); $cookie_value = $this->unpack($cookie_value);
-
- return isset($cookie_value[0]) : null;
- return null; **Cookie を更新し、内容のみを更新します。有効期限を更新する必要がある場合は、set メソッドを使用してください
- * @param String $name Cookie 名
- * @parammixed $value Cookie 値
- * @return boolean
- */
- public function update($name, $value){
- $cookie_name = $this->getName($name);
-
- if(isset($_COOKIE[$cookie_name] )){
- $old_cookie_value = $this->authcode($_COOKIE[$cookie_name], 'DECODE', $this->_securekey);
- $old_cookie_value = $this->unpack($old_cookie_value);
-
- if(isset( $old_cookie_value[1]) && $old_cookie_vlaue[1]>0){ // 前回の有効期限を取得します
-
- $cookie_expire = $old_cookie_value[1]
-
- // データを更新します
- $cookie_value = $this-> Pack($value, $cookie_expire);
- $cookie_value = $this->authcode($cookie_value, 'ENCODE', $this->_securekey)
-
- if($cookie_name && $cookie_value && $ cookie_expire); setcookie($cookie_name, $cookie_value, $cookie_expire);
- return true;
- }
- }
- }
- return false }
-
- /**清除cookie
- * @param String $name クッキー名
- */
- public function clear($name) {
- $cookie_name = $this->getName($name);
- setcookie($cookie_name);
- }
-
- /**プレフィックスを設定します
- * @param String $prefix クッキープレフィックス
- */
- public function setPrefix($prefix){
- if(is_string($ prefix) && $ prefix!=''){
- $this->_prefix = $prefix;
- }
- }
-
- /**有効期限を設定します
- * @param int $expire Cookie の有効期限が切れます
- */
- public function setExpire($expire){
- if(is_numeric($expire) && $expire>0){
- $this->expire = $expire;
- }
- }
-
- /**获取Cookie名
- * @param String $name
- * @return String
- */
- private function getName($name){
- return $this->_prefix? $this->_prefix.'_'.$name : $name;
- }
-
- /**Pack
- * @param 混合 $data データ
- * @param int $expire 判定に使用される有効期限
- * @return
- */
- プライベート関数pack($data, $expire){
- if($data===''){
- return ''; $cookie_data = array();
- $cookie_data['value'] = $data;
- $cookie_data['expire'] = $expire;
- return json_encode($cookie_data);
- }
-
- /**unpack
- * @param 混合 $data データ
- * @return array(データ、有効期限)
- */
- プライベート関数 unpack($data){
- if($data===''){
- return array('', 0);
- }
-
- $cookie_data = json_decode($data, true);
- if(isset($cookie_data['value']) && isset($cookie_data['expire'])){
- if(time()<$ cookie_data['expire']){ // 未使用
- return array($cookie_data['value'], $cookie_data['expire']);
- }
- }
- return array('', 0);
- }
-
- /**データの暗号化/復号化
- * @param String $str 元のテキストまたは暗号文
- * @param String $operation ENCODE または DECODE
- * @return String 設定に従って平文または暗号文を返します
- */
- プライベート関数 authcode($string, $operation = 'DECODE'){
- $ckey_length = 4; // 随机密钥長度 取值 0-32;
- $key = $this->_securekey;
-
- $key = md5($key);
- $keya = md5(substr($key, 0, 16));
- $keyb = md5(substr($key, 16, 16));
- $keyc = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length): substr(md5(microtime()), -$ckey_length)) : '';
-
- $cryptkey = $keya.md5($keya.$keyc);
- $key_length = strlen($cryptkey);
-
- $string = $operation == 'デコード' ? Base64_decode(substr($string, $ckey_length)) : sprintf('%010d', 0).substr(md5($string.$keyb), 0, 16).$string;
- $string_length = strlen($string);
-
- $result = '';
- $box = range(0, 255);
-
- $rndkey = array();
- for($i = 0; $i $rndkey[$i] = ord($cryptkey[$i % $key_length]);
- }
-
- for($j = $i = 0; $i $j = ($j + $box[$i] + $rndkey[$i]) % 256;
- $tmp = $box[$i];
- $box[$i] = $box[$j];
- $box[$j] = $tmp;
- }
-
- for($a = $j = $i = 0; $i < $string_length; $i++) {
- $a = ($a + 1) % 256;
- $j = ($j + $box[$a]) % 256;
- $tmp = $box[$a];
- $box[$a] = $box[$j];
- $box[$j] = $tmp;
- $result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
- }
-
- if($operation == 'DECODE') {
- if((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16)) {
- return substr($result, 26);
- } else {
- return '';
- }
- } else {
- return $keyc.str_replace('=', '',base64_encode($result));
- }
- }
-
- } // 授業終了
- ?>
-
-
- 复制代
2、デモ例demo.php
-
- require 'Cookies.class.php';
-
- $type = isset($_GET['type'])? strto lower($_GET['type']) : '';
-
- if(!in_array($type, array('set','get','update','clear'))){
- exit('タイプが存在しません');
- }
-
- $obj = 新しい Cookies('メンバー', 10); // obj
-
- switch($type){
-
- case 'set': // 設定
- $data = array(
- 'name' => 'fdipzone',
- 'gender' => 'male'
- ) ;
- $obj->set('me', $data, 5);
- 「Cookie を設定」をエコーします。
- 休憩;
-
- case 'get': // 读取
- $result = $obj->get('me');
-
- echo '
'; </li>
<li> print_r($result); </li>
<li> echo ' ';
-
- echo 'Cookie を取得';
- 休憩;
-
- case 'update': // 更新
- $data = array(
- 'name' => 'angelababy',
- 'gender' => '女性'
- );
- $flag = $obj->update('me', $data);
-
- if($flag){
- echo 'Cookie の更新に成功しました';
- }else{
- echo 'update cookies false';
- }
-
- 休憩;
-
- case 'clear': // 清除
- $obj->clear('me');
- 「Cookie をクリア」をエコーします。
- 休憩;
- }
- ?>
复制代
附、PHP Cookies操作类的ソースコード下載地址
|