nguyenminh

Random code generation

<?php
       $string1 = "ABCDEFGHKPQRTVWXYZ";
    $string2 = "123456789";
    $string = $string1 . $string2;
    $string1 = str_shuffle($string1);
    $string2 = str_shuffle($string2);
    $captcha_letter = substr($string1, 0, 2);
    $captcha_num = substr($string2, 0, 4);
    $result = $captcha_letter . $captcha_num;
    echo     $result ;
?>

Categorised in: Tổng hợp

0 Comments for "Random code generation"

One thought on “Random code generation”

  1. admin says:

    Save log result new line
    file_put_contents(‘log.txt’, json_encode( $result).PHP_EOL, FILE_APPEND);

Leave a Reply to admin Cancel reply

Your email address will not be published. Required fields are marked *