PHP 時間戳記取整問題

來源:互聯網
上載者:User
時間戳記是10位的,取的是目前時間戳:
$nowtime = strtotime(date('Y-m-d H:i:s')); //目前時間戳
得到的 $nowtime 有時候是 1393834011,有時候是 1393834062
我想實現一功能,怎麼樣能讓時間戳記取整變成這樣的:1393834020,1393834070?
不能直接這麼寫:strtotime(date('Y-m-d H:i'));


回複討論(解決方案)

$time=time();
$time=$time/10;
$time_zhengshu=floor($time);
$time_zhengshu=$time_zhengshu*10;
echo "$time_zhengshu";
?> 不知道這是不是你想要的 測試都是尾數為0.

echo round(1393834011 + 9, -1); //1393834020
echo round(1393834062 + 9, -1); //1393834070

float round ( float $val [, int $precision ] )

返回將 val 根據指定精度 precision(十進位小數點後數位數目)進行四捨五入的結果。precision 也可以是負數或零(預設值)。

樓上+1

$time=time();
$time=$time/10;
$time_zhengshu=floor($time);
$time_zhengshu=$time_zhengshu*10;
echo "$time_zhengshu";
?> 不知道這是不是你想要的 測試都是尾數為0. 沒看到樓主的需求,以為只是取整。徐版主的答案正確!

floor($time / 10) * 10

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.