$text = 'Просто текст 12345';
$matches = [];
echo preg_replace_callback('~[0-9]~', function($matches) {
$matches[] = $matches;
return '';
}, $text);
$text = 'Просто текст 12345';
$matches = [];
$text = preg_replace_callback('~[0-9]~', function($match) use(&$matches) {
$matches[] = $match[0];
return '';
}, $text);
var_dump($text, $matches);