php7 run

WBOY
WBOY원래의
2016-06-23 13:32:381822검색

/**
 * test.php ; compare php5.6.7 with php7.0.0alphal on time and memory by this simple program
 */

function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}

$time_start = microtime_float();
$memory_start = memory_get_usage();
echo "Time start $time_start\n";
echo "Memory start $memory_start\n";
// Sleep for a while
//usleep(100);

$sum = 0;
for($i=1; $i {
    $sum+=$i;
}
$i--;
echo "Sum(1+2+3+...+$i) = $sum\n";

$time_end = microtime_float();
$memory_end = memory_get_usage();
echo "Time end $time_end\n";
echo "Memory end $memory_end\n";

$time = $time_end - $time_start;
$memory = $memory_end - $memory_start;
//echo "Did nothing in $time seconds\n";

echo "Sub time $time seconds\n";
echo "Sub momory $memory byte\n";
?>






성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.