mirror of
https://github.com/myvesta/vesta
synced 2025-07-16 10:03:23 -07:00
8 lines
205 B
PHP
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);
|
|
|