1 2 3 4 5 6 7 8 9 10 | <?php $inputs = array("The language i use is [ans]php[/ans]","The quick [j]brown[/j] fox jumped over the lazy dog."); foreach($inputs as $input) { $input = preg_replace('#\[(.*?)\](.*?)\[/\1\]#', '<input type="text" name="\1_1" id="\1_1" />' ,$input); var_dump($input); } |
PD9waHAKCiRpbnB1dHMgPSBhcnJheSgiVGhlIGxhbmd1YWdlIGkgdXNlIGlzIFthbnNdcGhwWy9hbnNdIiwiVGhlIHF1aWNrIFtqXWJyb3duWy9qXSBmb3gganVtcGVkIG92ZXIgdGhlIGxhenkgZG9nLiIpOwpmb3JlYWNoKCRpbnB1dHMgYXMgJGlucHV0KSB7CgkkaW5wdXQgPSBwcmVnX3JlcGxhY2UoJyNcWyguKj8pXF0oLio/KVxbL1wxXF0jJywKICAgICAgICAgICAgCSAgICAgICAgICAgICAgJzxpbnB1dCB0eXBlPSJ0ZXh0IiBuYW1lPSJcMV8xIiBpZD0iXDFfMSIgLz4nCiAgICAgICAgICAgICAgIAkgICAgICAgICAgICwkaW5wdXQpOwoJdmFyX2R1bXAoJGlucHV0KTsKfQo=
-
upload with new input
-
result: Success time: 0s memory: 13112 kB returned value: 0
string(67) "The language i use is <input type="text" name="ans_1" id="ans_1" />" string(81) "The quick <input type="text" name="j_1" id="j_1" /> fox jumped over the lazy dog."


