PHP_EOL 写入字符串换行 , php获取毫秒 microtime
Posted 盘思动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP_EOL 写入字符串换行 , php获取毫秒 microtime相关的知识,希望对你有一定的参考价值。
private function miclog($t1,$t2,$name){ $lasttime = ($t2 - $t1).‘ms‘; $content = date(‘Y-m-d H:i:s‘,time()).‘ ‘.$lasttime.‘ ‘.$name; file_put_contents(‘/tmp/ssyv4/micro.log‘,$content.php_EOL,FILE_APPEND); } // php获取毫秒 private function getMillisecond() { list($s1, $s2) = explode(‘ ‘, microtime()); return (float)sprintf(‘%.0f‘, (floatval($s1) + floatval($s2)) * 1000); }
以上是关于PHP_EOL 写入字符串换行 , php获取毫秒 microtime的主要内容,如果未能解决你的问题,请参考以下文章