Bu gibi veriler var ki:
<option value="abc" >Test - 123</option>
<option value="def" >Test - 456</option>
<option value="ghi" >Test - 789</option>
PHP kullanarak, nasıl ben seçenek değerleri içinde tüm metin dönen, HTML etiketleri sıralamak istiyorum. 'Testi - 789', - '456 Testi' - Örneğin, yukarıda kodu verilir, ben '123 Testi' dönmek istiyorum.
Yardımın için teşekkürler!
UPDATE: So that I'm more clear - I'm using filegetcontents() to get the html from a site. For my purposes, I'd like to be able to sort through the html, find the option values, and output them. In this case, return 'Test - 123', 'Test - 456', etc.