在几秒钟内获得时间

时间:2010-10-18 13:00:41

标签: php

<?php 

    $target = mktime(0, 0, 0, 10, 25, 2010) ;
    $today = time () ;
    $difference =($target-$today) ;
    echo $output = $difference/60 ;

?>

以上代码会在几秒钟内给出时间

1 个答案:

答案 0 :(得分:4)

不会在几分钟内给出:)删除“/ 60”;