Skip to content

Instantly share code, notes, and snippets.

View Michaelkodji's full-sized avatar

KODJI Michaelkodji

  • Benin,Cotonou
View GitHub Profile
@Michaelkodji
Michaelkodji / code.php
Created May 27, 2020 11:45 — forked from manutheblacker/code.php
code de generation de code
<?php
function passgen2($nbChar){
return substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ0123456789'),1, $nbChar);
}
function generate_code_ticket($ticket_number=1){
$ticket_disponible = array();
while($ticket_number > 0){
$ticket_code = passgen2(9);