3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = "Some test text string with stop-words: stw stw2 stopword stw3stw stopword2c"; $stopwords = array( 'stw', 'stopword' ); $regexp = '(' . implode('|', $stopwords) . ')'; var_dump($regexp); mb_regex_encoding('UTF-8'); var_dump(mb_regex_encoding()); $initResult = mb_ereg_search_init($text); var_dump($initResult); $totalResult = mb_ereg_search($regexp, "imz"); var_dump($totalResult); while(mb_ereg_search()) { $r = mb_ereg_search_getregs(); var_dump($r, mb_ereg_search_getpos()); mb_ereg_search_setpos(mb_ereg_search_getpos()); var_dump(mb_ereg_search_getpos()); }
Output for git.master, git.master_jit, rfc.property-hooks
string(14) "(stw|stopword)" string(5) "UTF-8" bool(true) bool(true) array(2) { [0]=> string(3) "stw" [1]=> string(3) "stw" } int(46) int(46) array(2) { [0]=> string(8) "stopword" [1]=> string(8) "stopword" } int(56) int(56) array(2) { [0]=> string(3) "stw" [1]=> string(3) "stw" } int(60) int(60) array(2) { [0]=> string(3) "stw" [1]=> string(3) "stw" } int(64) int(64) array(2) { [0]=> string(8) "stopword" [1]=> string(8) "stopword" } int(73) int(73)

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:
50.19 ms | 402 KiB | 8 Q