gibi başlık diyor ben böyle bir dizesi vardır:
$string = "Hello World<br>hello world<br><br>";
şimdi ben bu gibi görünüyor bu yüzden bu dizenin sonundaki <br>
s kurtulmak istiyorum:
$string = "Hello World<br>hello world";
Ben bu çalıştı:
preg_replace('/^(<br>)*/', "", $string);
but this did not work. maybe someone knows the right regex.
greetings peter