Why does this yield this:
foreach( $store as $key => $value){ $value = $value.\".txt.gz\"; } unset($value); print_r ($store); Array ( [1] => 101Phon
How about array map:
$func = function($value) { return $value . ".txt.gz"; }; print_r(array_map($func, $store));