<?php
$info['name'] = 'test %value%';
$info['city'] = 'city test %value%';
$info['other'] = '%value% city test';
foreach ($info as $key => $value)
  $info[$key] = str_replace('%value%', 'MyValue', $value);
print_r($info);
?>