myvesta/web/time.php
2011-12-29 13:41:30 +03:00

8 lines
205 B
PHP

<?php
echo "<pre>";
$start_time = microtime(true);
exec('sudo /usr/local/vesta/bin/v_list_web_domains vesta json', $out);
$exec_time = microtime(true) - $start_time;
echo "$exec_time\n\n";
print_r($out);