揮発性のメモ2

最近知った知識を さも昔から知ってた風にメモ書きしていく

uptime取得

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

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