sql >> Base de Datos >  >> RDS >> Mysql

La función hace xx tiempo no funciona

  1. Tienes que buscar la fecha:

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

  2. Probablemente quieras usar strtotime() así por ejemplo:

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

  3. El $dif será en milisegundos.

  4. ¿Qué estás haciendo con los bucles y las matrices? Demasiado confuso.

5. POR QUÉ LA GENTE SIGUE UTILIZANDO mysql_ !!!