Skip to content

Instantly share code, notes, and snippets.

View tomookaku's full-sized avatar

Tomoo Kaku tomookaku

  • Daizer Networks Inc.
View GitHub Profile
@tomookaku
tomookaku / download.php
Last active January 3, 2016 05:28
zipファイルのダウンロード(更新確認付)
<?php
define('DOWMNLOAD_PATH', '/home/download/'); // download file path
$time = time();
$filename = isset($_REQUEST['name']) ? $_REQUEST['name'] : null;
if ($filename == null) {
header("HTTP/1.0 404 Not Found");
exit;
@tomookaku
tomookaku / auth.php
Last active January 2, 2016 11:29
ログイン認証 通信リクエスト・レスポンスの暗号化
<?php
/**
* Auth
*
* 認証、暗号化パッケージ
*
* @version 1.0
* @author Tomoo Kaku
* @copyright 2013 Tomoo Kaku
*/
@tomookaku
tomookaku / continuous_detection.php
Last active January 2, 2016 11:19
PHP連打(マルチリクエスト)対策 Redis版
<?php
$redis = null;
session_start();
$user_id = $_SESSION['user_id'];
if ($user_id) {