summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/ramspeed/parse-results.php
blob: 3c88835fcdd61c307ac80d202c82ea33565d001e (plain)
1
2
3
4
5
6
7
8
<?php

$log_file = file_get_contents(getenv("LOG_FILE"));
$arg = trim($log_file);
$arg = substr($arg, 0, strrpos($arg, "Mb/s") - 1);
echo substr($arg, strrpos($arg, ' '));

?>