<?php

// Initial Configuration
global $x;
$i   0;
$tmp '';
while(
$i 10000) {
  
$tmp .= 'a';
  ++
$i;
}
$x array_fill(51000$tmp);
unset(
$i$tmp);

// Test Source
function Test3_3() {
    global 
$x;

    
/* The Test */
    
$t microtime(true);
    
$size sizeof($x);
    for (
$i=0$i<$size$i++);

    return (
microtime(true) - $t);
}

// Variable Clean-up
function Test3_End() {
    global 
$x;
    unset(
$x);
}

?>