PHP: Como tornar variável visível em create_function ()?

Este código:

<code>$t = 100;
$str = preg_replace_callback("/(Name[A-Z]+[0-9]*)/",
                            create_function(
                                  '$matches',
                                  'return $matches[1] + $t;'
                            ), $func);
</code>

Como tornar $ t visível a partir de create_function () na função preg_replace ()?

questionAnswers(5)

yourAnswerToTheQuestion