time.php 205 B

12345678
  1. <?php
  2. echo "<pre>";
  3. $start_time = microtime(true);
  4. exec('sudo /usr/local/vesta/bin/v_list_web_domains vesta json', $out);
  5. $exec_time = microtime(true) - $start_time;
  6. echo "$exec_time\n\n";
  7. print_r($out);