Browse Source

Espace de démonstration : correctif tache cron

prodstable
keun 7 years ago
parent
commit
10f106c2d3
1 changed files with 20 additions and 17 deletions
  1. +20
    -17
      backend/controllers/CronController.php

+ 20
- 17
backend/controllers/CronController.php View File

foreach($users as $u) foreach($users as $u)
{ {
do {
$i_nom = rand(0, count($arr_noms)-1) ;
$i_prenom = rand(0, count($arr_prenoms)-1) ;
} while(isset($arr_noms_checked[$i_nom]) || isset($arr_prenoms_checked[$i_prenom])) ;
$arr_noms_checked[$i_nom] = true ;
$arr_prenoms_checked[$i_prenom] = true ;
$nom = $arr_noms[$i_nom] ;
$prenom = $arr_prenoms[$i_prenom] ;
$u->nom = $nom ;
$u->prenom = $prenom ;
$u->email = strtolower($prenom).'.'.strtolower($nom).'@yopmail.com' ;
$u->telephone = '0600000000' ;
$u->save() ;
if($u->email != 'boulanger@laboiteapain.net')
{
do {
$i_nom = rand(0, count($arr_noms)-1) ;
$i_prenom = rand(0, count($arr_prenoms)-1) ;
} while(isset($arr_noms_checked[$i_nom]) || isset($arr_prenoms_checked[$i_prenom])) ;

$arr_noms_checked[$i_nom] = true ;
$arr_prenoms_checked[$i_prenom] = true ;

$nom = $arr_noms[$i_nom] ;
$prenom = $arr_prenoms[$i_prenom] ;

$u->nom = $nom ;
$u->prenom = $prenom ;
$u->email = strtolower($prenom).'.'.strtolower($nom).'@yopmail.com' ;
$u->telephone = '0600000000' ;

$u->save() ;
}
} }
} }
} }

Loading…
Cancel
Save