PHP的小趣味
这是一个使用PHP并收集有用代码的备忘录。
检查PHP内存使用情况
echo "first:".memory_get_usage() / (1024 * 1024)."MB\n";
$arr = [];
for($i=0;$i<10000;$i++) {
$arr[] = $i;
}
echo "now:".memory_get_usage() / (1024 * 1024)."MB\n";
PHP检查启动时间
$time_start = microtime(true);
// ...計測したい処理
$time = microtime(true) - $time_start;
echo "{$time} 秒";