Function Random [PHP]

function randomToken($len) {
srand( date("s") );
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; $chars.= "1234567890!@#$%^&*()"; // กำหนดอักขษะที่จะนำมา random แก้ได้นะ คืิิิอ อาจจะเอาออก หรือว่าใส่เพิ่มได้
$ret_str = ""; $num = strlen($chars);for($i=0; $i < $len; $i++) {
$ret_str.= $chars[rand()%$num]; // ใช้ฟังชั่น rand() เข้ามาช่วยในการทำงาน
}
return $ret_str;
}
$code = randomToken(5);// เป็นตัวแปรที่มีการเรียกใช้ฟังชั่นและผลที่ออกมาคือตัวอักษร อักขระ ตัวเลข ที่ผ่านการ สุ่มออกมาทั้งหมด 5 ตัว และเวลานำไปใช้ ให้ใช้ $code

ไม่มีความคิดเห็น:

แสดงความคิดเห็น