PHP Hapus tanda kurung dan konten dari string

$string = "ABC (Test1)";
echo preg_replace("/\([^)]+\)/","",$string); // 'ABC '
Geeky Bravo