ext-uv/examples/debug_timer.php

10 lines
268 B
PHP
Raw Normal View History

2012-07-01 14:58:12 +02:00
<?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']);
});