Sunday, May 20, 2012

PHP: remove single and multiple line comments

Remove single line comments:
$string = preg_replace('/\/\/(.*)/', '', $string);

Remove multiple line comments:
$string = preg_replace('!/\*.*?\*/!s', '', $string);


No comments: