PHP minifier breaks PHP file when single line comments are present
Opened this issue · 0 comments
JacksonChen666 commented
Single line comments (like below) in php
// a single line comment
nextStatement();
gets minified without being manipulated and turn into
// a single line comment nextStatement();
breaking the rest of the PHP file.
Screenshot (224kb) (left side is not minified, and the right side is minified but with changes that break the PHP file due to single line comments)
Workaround:
A workaround for not letting comments break the rest of the file is to use /* multi-line (or 'C' style) comments instead */