I (//...)
yorumları engellemek için tek satır yorum dönüştürmek gerekir (/*...*/)
. Neredeyse aşağıdaki kodda bu başarılı; Ancak, herhangi bir tek satır açıklama Blok yorumun zaten atlamak işlev gerekir. Tek satırlık açıklama Blok yorumun olsa bile Şu anda, herhangi bir tek satır yorum eşleşir. Böyle bir şey olamaz. Bu btw PHP. Şimdiden yardım için teşekkürler!
## Convert Single Line Comment to Block Comments
function singleLineComments( &$output ) {
$output = preg_replace_callback('#//(.*)#m',
create_function(
'$match',
'return "/* " . trim(mb_substr($match[1], 0)) . " */";'
), $output
);
}