1 2 3 4 5 | <?php $text = '__This_is__ a __test__'; preg_match_all('/__(?:(?!__).)+__/', $text, $matches); print_r($matches); ?> |
PD9waHAKJHRleHQgPSAnX19UaGlzX2lzX18gYSBfX3Rlc3RfXyc7CnByZWdfbWF0Y2hfYWxsKCcvX18oPzooPyFfXykuKStfXy8nLCAkdGV4dCwgJG1hdGNoZXMpOwpwcmludF9yKCRtYXRjaGVzKTsKPz4=
-
upload with new input
-
result: Success time: 0.01s memory: 13112 kB returned value: 0
Array ( [0] => Array ( [0] => __This_is__ [1] => __test__ ) )


