Ignore:
Timestamp:
2007/07/20 15:58:59 (17 years ago)
Author:
nanasess
Message:

r15064 から svn cp
とりあえず暫定コミット.

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
Location:
branches/feature-module-update
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update

    • Property svn:ignore set to
      .cache

      .settings

      .projectOptions
  • branches/feature-module-update/html/test/uehara/captcha/ajax_captcha/create_image.php

    r12157 r15078  
    11<?php 
    22 
    3 // セッションスタート 
     3// ?祉???激?с?潟?鴻?帥?若?? 
    44session_start(); 
    55 
    6 // 画像イメージ生成  
    7 // ランダムな文字列を生成 
     6// ?糸??ゃ?<?若?悟????  
     7// ???潟????????絖????????? 
    88$md5_hash = md5(rand(0,999));  
    9 // 文字列を5桁にする  
     9// ??絖?????鐚?罅???????  
    1010$code = substr($md5_hash, 15, 5);  
    11 // セッションに生成されたコードを保存 
     11// ?祉???激?с?潟?????????????潟?若????篆?絖? 
    1212$_SESSION["code"] = $code; 
    1313 
    1414$image = ImageCreate(120, 20);   
    1515 
    16 // 色の定義  
     16// ?蚊???臂  
    1717$white = ImageColorAllocate($image, 255, 255, 255);  
    1818$grey = ImageColorAllocate($image, 204, 204, 204);  
    1919 
    20 // 背景色 
     20// ????? 
    2121ImageFill($image, 0, 0, $grey);  
    2222 
    23 // 生成したコードを表示 
     23// ?????????潟?若????茵?ず 
    2424ImageString($image, 5, 30, 3, $code, $white);  
    2525 
    26 // jpagで出力  
     26// jpag?у?阪??  
    2727header("Content-Type: image/jpeg");  
    2828ImageJpeg($image);  
Note: See TracChangeset for help on using the changeset viewer.