albert@emc2: .../~/ $ php
Warning: ereg_replace(): REG_BADRPT in - on line 3Codice PHP:
<?php
$text="test r[b]pāoa[LISTA] [O]eafdmsaųiasd [NAVY]ds[/navy]... <s>";
$text = ereg_replace("\[LISTA\].*?\[O\]", "[LISTAAPRI]", $text);
echo $text, "\n";
albert@emc2: .../~/ $ php
test r[b]pāoa[LISTAAPRI]eafdmsaųiasd [NAVY]ds[/navy]... <s>Codice PHP:
<?php
$text="test r[b]pāoa[LISTA] [O]eafdmsaųiasd [NAVY]ds[/navy]... <s>";
$text = ereg_replace("\[LISTA\].*\[O\]", "[LISTAAPRI]", $text);
echo $text, "\n";
albert@emc2: .../~/ $