揮発性のメモ2

知識をメモ書きしておく

uptime取得

<?php
/**
 * PCが起動してからの秒数
 * @return  integer
 */
function uptime(){
    return intval(file_get_contents("/proc/uptime"));
}

print( uptime()."\r" );