Obtenha os charectores dentro do aparelho regex php

$text = 'ignore everything except this (text)';
preg_match('#\((.*?)\)#', $text, $match);
print $match[1];
uzii