You change $content before replacing the string.
$content = "<pre>This is a pre text I want to convert it to paragraphs "; print_r(htmlspecialchars($content)); // returns <pre>This is a pre text &
None of them match your str_replace
Delete htmlspecialchars() and you will get the desired result.
$content = "<pre>This is a pre text I want to convert it to paragraphs "; print_r(str_replace(array('<pre>', '</pre>', ' '),array('<p>', '</p>', '<br/>'),$content));
source share