1 secondo cron

  1. I

    Script ogni secondo in background

    Salve a tutti, ho un cron che s'innesca ogni minuto, e richiama un file che esegue un while con uno sleep di 1 secondo, ad esempio: $q=1; while($q < 61) { funzione($var); sleep(1); $q++; } In questo modo dovrebbe eseguire lo script ogni secondo. Il problema che...