ext-uv/examples/debug_timer.php

13 lines
274 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();
2020-02-15 22:36:03 +01:00
uv_timer_start($timer, 10, 1000, function($timer) use (&$stat) {
2012-07-01 14:58:12 +02:00
$stat["current"] = memory_get_usage();
printf("memory: %d\n", $stat["current"] - $stat['begin']);
2020-02-15 22:36:03 +01:00
});
uv_run();