php function preg_replace regex çalışmıyor, bir sözdizimi soru

0 Cevap php

im kontrollü komut durumlarda gebelik ile değiştirin unnessary yorumu kaldırmak için çalışıyoruz, ama benim regex yanlıştır. Herkes benim regex ile whats yanlış herhangi bir fikir? (I have Apache/2.0.54 & PHP/5.2.9

BEFORE:

// Bla Bli Blue Blow Bell Billy Bow Bye
script var etc ();    // cangaroo cognac codified cilly celine cocktail couplet
script http://blaa.org    // you get the idea!

AFTER:

script var etc ();
script http://blaa.org

PROBLEM: what regex to use?

# when comment starts on a new line, delete this entire line
# find [a new line] [//] [space or no space] [comment]
$buffer = preg_replace('??', '??', $buffer);

# when comment is halfway in script (    //  comment)
# find [not beginning of a line] [1 TAB] [//] [1 space again] [comment]
$buffer = preg_replace('??', '??', $buffer);

Herhangi ve tüm öneriler bu bilmeceyi çözmek için cuase im kadar lanetlemek yakın, bana göre 1 değerli olacak!

0 Cevap