3v4l.org

run code in 300+ PHP versions simultaneously
<?php // http://stackoverflow.com/questions/34416490/how-to-match-html-selected-option-with-preg-match $html1 = <<<EOT <option selected="selected" value="1">value text</option> EOT; $html2 = <<<EOT <option selected value="1">value text</option> EOT; $html3 = <<<EOT <option value="the devil with **selected** ">value text</option> EOT; $html4 = <<<EOT <option selected="selected" value="1">value text</option> <option value="the devil with **selected** ">value text</option> <option selected value="1">value text</option> EOT; function get_selected($html) { $results = array(); $doc = new DOMDocument; $doc->loadHTML($html); $xpath = new DOMXpath($doc); foreach ($xpath->query("//option") as $option) { $selected_value = $xpath->evaluate('string(@selected)', $option); $results[] = $selected_value; } return $results; } var_dump( '1', get_selected($html1) ); var_dump( '2', get_selected($html2) ); var_dump( '3', get_selected($html3) ); var_dump( '4', get_selected($html4) );
Output for git.master, git.master_jit, rfc.property-hooks
string(1) "1" array(1) { [0]=> string(8) "selected" } string(1) "2" array(1) { [0]=> string(8) "selected" } string(1) "3" array(1) { [0]=> string(0) "" } string(1) "4" array(3) { [0]=> string(8) "selected" [1]=> string(0) "" [2]=> string(8) "selected" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
70.05 ms | 402 KiB | 8 Q