Regex to strip comments and multi-line comments and empty lines

$text = preg_replace('!/\*.*?\*/!s', '', $text);
$text = preg_replace('/\n\s*\n/', "\n", $text);

Leave a Comment