You didn't say what the name of your array is, but you'd simply assign an element to a variable, something like:
$variable = $array[0];
$variable would then be "/var/www/html/testphp/1x/1x1.html "
If you wanted to iterate through the elements in the array you could use each()
while (list($key, $value) = each($array)) {
echo "Key: $key; Value: $value<br />\n";
}