Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Whats the best way to remove comments from a PHP file?

I want to do something similar to strip-whitespace() - but it shouldn't remove the line breaks as well.

EG:

I want this:

<?PHP
// something
if ($whatsit) {
    do_something(); # we do something here
    echo '<html>Some embedded HTML</html>';
}
/* another long 
comment
*/
some_more_code();
?>

to become:

<?PHP
if ($whatsit) {
    do_something();
    echo '<html>Some embedded HTML</html>';
}
some_more_code();
?>

(Although if the empty lines remain where comments are removed, that wouldn't be ok).

It may not be possible, because of the requirement to preserve embedded html - thats whats tripped up the things that have come up on google.

share|improve this question
Look into obfusacators. Although you'd have to find one that was configurable--to strip comments only. – Michael Haren Feb 2 '09 at 16:52
Someone is bound to ask why: The code needs to go to a clients server to be deployed, so we want to make sure no is there that shouldn't be. – benlumley Feb 2 '09 at 16:52
Are you talking about inappropriate content in the comments? Or is this just for size - smaller PHP scripts make almost no performance difference except in high usage or unusual cases (and Zend is usually a better answer than stripping them). – Adam Davis Feb 2 '09 at 17:02
its where there are things in the comments that we don't want to risk being read. they shouldn't be there - but too late for that now. – benlumley Feb 2 '09 at 17:04
I'd be reluctant to remove comments unless you're doing obfuscation. You may find a time when you need those comments on the client's server. Also, have you made it clear to them that the code is coming with comments? They may not like the surprise when they bring in different consultants... – Adam Davis Feb 2 '09 at 17:04
show 1 more comment

6 Answers

up vote 29 down vote accepted

I'd use tokenizer. Here's my solution. It should work on both PHP 4 and 5:

$fileStr = file_get_contents('path/to/file');
$newStr  = '';

$commentTokens = array(T_COMMENT);

if (defined('T_DOC_COMMENT'))
    $commentTokens[] = T_DOC_COMMENT; // PHP 5
if (defined('T_ML_COMMENT'))
    $commentTokens[] = T_ML_COMMENT;  // PHP 4

$tokens = token_get_all($fileStr);

foreach ($tokens as $token) {    
    if (is_array($token)) {
        if (in_array($token[0], $commentTokens))
            continue;

        $token = $token[1];
    }

    $newStr .= $token;
}

echo $newStr;
share|improve this answer
ta for the code! will try it tommorrow. – benlumley Feb 2 '09 at 19:02
this sorted it out, ta – benlumley Feb 3 '09 at 13:46
Glad I could help. – Ionuț G. Stan Feb 3 '09 at 13:50
2  
You should take out $commentTokens initialization out of the foreach block, otherwise +1 and thanks :) – Raveren Oct 10 '10 at 19:17
@Raveren, you're damn right. I have no idea what was in my mind back then to put that piece of code inside the loop. Thanks for pointing it out. – Ionuț G. Stan Oct 11 '10 at 7:39
show 1 more comment

How about using php -w to generate a file stripped of comments and whitespace, then using a beautifier like PHP_Beautifier to reformat for readability?

share|improve this answer
thats a good option as well ..... – benlumley Feb 2 '09 at 17:05
+1 - this is probably the best option. – Adam Davis Feb 2 '09 at 17:05
thanks for the suggestion - the other way was quicker to use, as all the bits were already on the server. – benlumley Feb 3 '09 at 13:47
Yes, I like the tokeniser answer, simpler! – Paul Dixon Feb 3 '09 at 13:48
$fileStr = file_get_contents('file.php');
foreach (token_get_all($fileStr) as $token ) {
    if ($token[0] != T_COMMENT) {
        continue;
    }
    $fileStr = str_replace($token[1], '', $fileStr);
}

echo $fileStr;

edit I realised Ionut G. Stan has already suggested this, but I will leave the example here

share|improve this answer
I think the above snippet should work just fine. It's actually simpler than I thought. – Ionuț G. Stan Feb 2 '09 at 17:14

Here's the function posted above, modified to recursively remove all comments from all php files within a directory and all its subdirectories:

function rmcomments($id) {
    if (file_exists($id)) {
        if (is_dir($id)) {
            $handle = opendir($id);
            while($file = readdir($handle)) {
                if (($file != ".") && ($file != "..")) {
                    rmcomments($id."/".$file); }}
            closedir($handle); }
        else if ((is_file($id)) && (end(explode('.', $id)) == "php")) {
            if (!is_writable($id)) { chmod($id,0777); }
            if (is_writable($id)) {
                $fileStr = file_get_contents($id);
                $newStr  = '';
                $commentTokens = array(T_COMMENT);
                if (defined('T_DOC_COMMENT')) { $commentTokens[] = T_DOC_COMMENT; }
                if (defined('T_ML_COMMENT')) { $commentTokens[] = T_ML_COMMENT; }
                $tokens = token_get_all($fileStr);
                foreach ($tokens as $token) {    
                    if (is_array($token)) {
                        if (in_array($token[0], $commentTokens)) { continue; }
                        $token = $token[1]; }
                    $newStr .= $token; }
                if (!file_put_contents($id,$newStr)) {
                    $open = fopen($id,"w");
                    fwrite($open,$newStr);
                    fclose($open); }}}}}

rmcomments("path/to/directory");
share|improve this answer

The catch is that a less robust matching algorithm (simple regex, for instance) will start stripping here when it clearly shouldn't:

if (preg_match('#^/*' . $this->index . '#', $this->permalink_structure)) {

It might not affect your code, but eventually someone will get bit by your script. So you will have to use a utility that understands more of the language than you might otherwise expect.

share|improve this answer
/*
* T_ML_COMMENT does not exist in PHP 5.
* The following three lines define it in order to
* preserve backwards compatibility.
*
* The next two lines define the PHP 5 only T_DOC_COMMENT,
* which we will mask as T_ML_COMMENT for PHP 4.
*/

if (! defined('T_ML_COMMENT')) {
    define('T_ML_COMMENT', T_COMMENT);
} else {
    define('T_DOC_COMMENT', T_ML_COMMENT);
}

/*
 * Remove all comment in $file
 */

function remove_comment($file) {
    $comment_token = array(T_COMMENT, T_ML_COMMENT, T_DOC_COMMENT);

    $input = file_get_contents($file);
    $tokens = token_get_all($input);
    $output = '';

    foreach ($tokens as $token) {
        if (is_string($token)) {
            $output .= $token;
        } else {
            list($id, $text) = $token;

            if (in_array($id, $comment_token)) {
                $output .= $text;
            }
        }
    }

    file_put_contents($file, $output);
}

/*
 * Glob recursive
 * @return ['dir/filename', ...]
 */

function glob_recursive($pattern, $flags = 0) {
    $file_list = glob($pattern, $flags);

    $sub_dir = glob(dirname($pattern) . '/*', GLOB_ONLYDIR);
    // If sub directory exist
    if (count($sub_dir) > 0) {
        $file_list = array_merge(
            glob_recursive(dirname($pattern) . '/*/' . basename($pattern), $flags),
            $file_list
        );
    }

    return $file_list;
}

// Remove all comment of '*.php', include sub directory
foreach (glob_recursive('*.php') as $file) {
    remove_comment($file);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.