这段代码:
$t = 100;
$str = preg_replace_callback("/(Name[A-Z]+[0-9]*)/",
create_function(
'$matches',
'return $matches[1] + $t;'
), $func);
如何使 $t 从 preg_replace() 函数中的 create_function() 可见?