if(preg_match("//*/i",$line))echo "comment start";
if(preg_match("/*//i",$line))echo "comment end";
I'm searching comments which one starts with /*
and end with */
and I cant get any result with this code. I’m trying to get comment start and end line.