albert@emc2: .../~/ $ php
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";
Warning: ereg_replace(): REG_BADRPT in - on line 3

albert@emc2: .../~/ $ php
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";
test r[b]pāoa[LISTAAPRI]eafdmsaųiasd [NAVY]ds[/navy]... <s>
albert@emc2: .../~/ $