Ben preg_replace veya değiştirmek için benzer bir yöntem kullanarak bir çözüm arıyorum:
<li id="id1" class="authorlist" />
<li id="id2" class="authorlist" />
<li id="id3" class="authorlist" />
karşı
<option id="id1" class="authorlist" />
<option id="id2" class="authorlist" />
<option id="id3" class="authorlist" />
I think I have the pattern correct, but not sure how karşı do the replacement part...
İşte (wordpress) php kodu:
$string = wp_list_authors( $args ); //returns list as noted above
$pattern = '<li ([^>]*)';
$replacement = '?????';
echo preg_replace($pattern, $replacement, $string);
Öneriler, lütfen?