3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = "Deri Renk|kırmızı-siyah-beyaz-sarı-lacivert,kadife Renk|kırmızı-sarı"; $list = explode(",", $input); $list1 = []; foreach( $list as $item ) { list($key,$data) = explode("|", $item); $list1[$key] = explode("-", $data); } foreach ( $list1 as $heading=>$out ) { echo "<div><h1>$heading</h1><ul>\n"; echo "<li>".implode("</li><li>",$out)."</li>\n"; echo "</ul</div>\n"; }

preferences:
146.81 ms | 405 KiB | 5 Q