summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/memory-bandwidth/parse-results.php
blob: 39af0a563cca3fabdfbe9f2c29367c06930a79f9 (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, ' '));
echo substr($arg, strrpos($arg, ' '));

?>