|
|
|
โค้ด random ภาษาไทยเขียนกันยังไง 028464 |
|
|
|
|
|
|
|
<?
session_start();
error_reporting(E_ALL ^ E_NOTICE);
function passwdgen( $len ) {
$code = "กขคฆงจฉชซณญ...ฮ";
srand((double)microtime()*1000000);
for($i=0 ; $i < $len ; $i++) {
$password .= $code[rand()%strlen($code)];
}
return $password;
}
$_SESSION['ses_code'] = passwdgen(5) ;
echo $_SESSION['ses_code'] ;
?>
ไม่รู้ว่าถูกหรือเปล่านะครับ
|
|
|
|
|
Date :
8 พ.ค. 2550 16:10:02 |
By :
007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอคุณครับ ลืมบอกไปที่ว่ามันขึ้นเป็นภาษาอะไรกไม่รู้นะหมายถึง random ตัวหนังสือให้เป็นภาพอะครับ
|
|
|
|
|
Date :
8 พ.ค. 2550 19:10:18 |
By :
studentclublcct |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งงครับ
ช่วยอธิบายให้ละเอียดกว่านี้ได้ไหมครับ
|
|
|
|
|
Date :
10 พ.ค. 2550 20:20:26 |
By :
นนา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "กขคงจฉชซ";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(4);
$passw = random_password(5);
header("Content-type: image/png");
$img = @imagecreate(100, 30);
$color_gray = imagecolorallocate($img, 255, 255, 192);
$color_white = imagecolorallocate($img, 255, 255, 255);
$color_black = imagecolorallocate($img, 100, 20, 20);
imagettftext($img, 26, 0, 30, 25, $color_black, "fonts/DSNLT___.ttf", $passw);
//imagestring($img, 12, 10, 8, $passw, $color_black);
imagepng($img);
imagedestroy($img);
?>
|
|
|
|
|
Date :
25 เม.ย. 2551 17:42:57 |
By :
kowit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|