You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
467 B
22 lines
467 B
<?php
|
|
|
|
|
|
class MyDB extends SQLite3
|
|
{
|
|
function __construct()
|
|
{
|
|
$this->open('mysqlitedb.db');
|
|
}
|
|
}
|
|
|
|
function genererChaineAleatoire($longueur = 10)
|
|
{
|
|
$caracteres = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
|
$longueurMax = strlen($caracteres);
|
|
$chaineAleatoire = '';
|
|
for ($i = 0; $i < $longueur; $i++)
|
|
{
|
|
$chaineAleatoire .= $caracteres[rand(0, $longueurMax - 1)];
|
|
}
|
|
return $chaineAleatoire;
|
|
} |