ext-uv/examples/debug_timer.php
2012-07-01 21:58:12 +09:00

10 lines
268 B
PHP

<?php
$timer = uv_timer_init();
$stat = array();
$stat['begin'] = memory_get_usage();
uv_timer_start($timer, 10, 1000, function($stat, $timer) use (&$stat){
$stat["current"] = memory_get_usage();
printf("memory: %d\n", $stat["current"] - $stat['begin']);
});