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