We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecf7461 commit 26df7e5Copy full SHA for 26df7e5
ext/pcre/php_pcre.c
@@ -615,8 +615,7 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex)
615
/* PCRE specific options */
616
case 'A': coptions |= PCRE2_ANCHORED; break;
617
case 'D': coptions |= PCRE2_DOLLAR_ENDONLY;break;
618
- /* TODO in how far it is feasible at all, study is done for every pattern in PCRE2. */
619
- case 'S': /*do_study = 1;*/ break;
+ case 'S': /* Pass. */ break;
620
case 'U': coptions |= PCRE2_UNGREEDY; break;
621
case 'X': extra_coptions &= ~PCRE2_EXTRA_BAD_ESCAPE_IS_LITERAL; break;
622
case 'u': coptions |= PCRE2_UTF;
0 commit comments