mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-02-02 20:49:28 +01:00
9 lines
205 B
PHP
9 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);
|
|
|