3v4l.org

run code in 300+ PHP versions simultaneously
<?php $pagetext = 'Here\'s some text and stuff what is your favorite color? @OTHER["favorite color"] Whats your favorite food? @OTHER["favorite food"]'; $c = 0; while(strpos($pagetext, "@OTHER[") !== false){ $start = strpos($pagetext, '@OTHER["') + 8; $stop = strpos($pagetext, '"]', $start); $label = substr($pagetext, $start, $stop-$start); $pagetext = str_replace('@OTHER["'.$label.'"]','<input type="text" name="otherlabel'.$c.'" value="'.$label.'" /><input type="text" name="otherfield'.$c.'"><br /><small><i>'.$label.'</i></small>',$pagetext); $c++; } echo $pagetext;

preferences:
52.55 ms | 402 KiB | 5 Q