Buffer contents can be extracted using the ob_get_contents method. You can then use replace_this as the search criteria.
PHP Code:
$contents = ob_get_contents();
ob_end_clean();
$contents = str_replace('replace_this', 'New Description', $contents);
print $contents;
Although I'd suggest it would be easier to simply use a variable to represent the description instead.