Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<?php
/*
    /* this is a comment */
*/
?>

PHP returns "syntax error"...
Is this just a completely wrong way to use multiple line comment?

Sometimes I need to comment out a big block of code for testing, and this block contains hundreds of lines and there are many multiple line comments inside.

So what's the best way to comment out this big block? besides removing it temporarily from the file?

share|improve this question

2 Answers

up vote 2 down vote accepted

From the PHP manual:

'C' style comments end at the first */ encountered. Make sure you don't nest 'C' style comments. It is easy to make this mistake if you are trying to comment out a large block of code.

<?php
 /*
    echo 'This is a test'; /* This comment will cause a problem */
 */
?>

:(

share|improve this answer
so are you saying that the only thing I could do is to either use bunch of // inside a multiple line comment or remove the block temporarily from the file? – dudeMatt Aug 8 '11 at 4:08
@dudeMatt - Yes, unfortunately - or use an IDE which does 'mass replacement' well. Or create your own script. – karim79 Aug 8 '11 at 4:10
It's unreliable because it is feasible to have /* or */ within regular expressions, anyway. – karim79 Aug 8 '11 at 4:12
To add to the answer, your FIRST comment block ends when the second comment block ends. So the first comment block become /* echo ... */, and then the last */ is readen as code. – bertzzie Aug 8 '11 at 4:28

I'd say it depends on your IDE/editor. Some IDE's have a "comment" feature, which will do single-line comments (//) on all lines of a selected area, so you would select the whole range and click that button.

If your IDE doesn't have that feature, then I think you're out of luck.

For example, suppose this is your original code

$a = 1; /* sets a = 1 */
$b = 2;
/*
    blah blah
*/

If you highlight that whole thing in some IDEs and click the comment button, you'll end up with:

// $a = 1; /* sets a = 1 */
// $b = 2;
// /*
//     blah blah
// */

The // comments win, which mean you just did what you're trying to accomplish.

share|improve this answer
IDE? Editor? what kind of editor would tell PHP to comment code MY way? NO! it's a PHP related problem...nothing to do with editors... – dudeMatt Aug 8 '11 at 4:07
Dude, relax. All I'm saying is that if your IDE lets you do a one-click comment using single-line comments, then you can comment multiple lines with one click, and it won't matter if there are multi-line comments in that batch. See my edit. – Joe Enos Aug 8 '11 at 4:15
Ahhh, brings back memories of eclipse... 'Ctrl->/' and all is commented – karim79 Aug 8 '11 at 4:16
@dudeMatt - if it makes you feel any better, the same problem exists in JavaScript, "never not use // in JavaScript because teh lolzboat cud sink" (Oscar Wilde, 1748). – karim79 Aug 8 '11 at 4:19
@Joe, alright, my bad. yes, I'm using EditPlus and it does have that feature, but after all it looks bad to me with so many //. – dudeMatt Aug 8 '11 at 4:28
show 2 more comments

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.