Mysql
 sql >> Base de données >  >> RDS >> Mysql

La fonction il y a xx temps ne fonctionne pas

  1. Vous devez récupérer la date :

    $tm = mysql_query("SELECT timestamp AS t FROM logs ORDER by id ASC")->fetch_assoc()['t']; //obviously, check the size before you fetch

  2. Vous voulez probablement utiliser strtotime() donc par exemple :

    $dif = $cur_tm-strtotime($tm);

  3. Le $dif sera en millisecondes.

  4. Que fais-tu avec les boucles et les tableaux ? Trop déroutant.

5. POURQUOI LES GENS CONTINUENT-ILS À UTILISER mysql_ !!!