Home
last modified time | relevance | path

Searched refs:pcre (Results 1 – 25 of 90) sorted by relevance

1234

/PHP-5.5/ext/standard/tests/general_functions/
H A Dini_get_all.phpt4 pcre.backtrack_limit=1000000
5 pcre.recursion_limit=100000
15 var_dump(ini_get_all("pcre"));
16 var_dump(ini_get_all("pcre", false));
34 ["pcre.backtrack_limit"]=>
43 ["pcre.recursion_limit"]=>
54 ["pcre.backtrack_limit"]=>
56 ["pcre.recursion_limit"]=>
/PHP-5.5/sapi/cli/tests/
H A D006.phpt19 var_dump(`$php -n --re pcre`);
31 Entry [ pcre.backtrack_limit <ALL> ]
34 Entry [ pcre.recursion_limit <ALL> ]
57 Function [ <internal:pcre> function preg_match ] {
67 Function [ <internal:pcre> function preg_match_all ] {
77 Function [ <internal:pcre> function preg_replace ] {
97 Function [ <internal:pcre> function preg_filter ] {
107 Function [ <internal:pcre> function preg_split ] {
116 Function [ <internal:pcre> function preg_quote ] {
123 Function [ <internal:pcre> function preg_grep ] {
[all …]
H A D018.phpt23 pcre
/PHP-5.5/ext/pcre/
H A Dconfig.w324 EXTENSION("pcre", "php_pcre.c", false /* never shared */,
5 "-Iext/pcre/pcrelib");
6pcre/pcrelib", "pcre_chartables.c pcre_ucd.c pcre_compile.c pcre_config.c pcre_exec.c pcre_fullinf…
7 ADD_DEF_FILE("ext\\pcre\\php_pcre.def");
12 PHP_INSTALL_HEADERS("ext/pcre", "php_pcre.h pcrelib/");
H A Dconfig0.m48 PHP_ARG_WITH(pcre-regex,,
9 [ --with-pcre-regex=DIR Include Perl Compatible Regular Expressions support.
15 test -f $i/pcre.h && PCRE_INCDIR=$i
19 AC_MSG_ERROR([Could not find pcre.h in $PHP_PCRE_REGEX])
34 pcre_major=`grep PCRE_MAJOR $PCRE_INCDIR/pcre.h | sed -e 's/[^0-9]//g'`
35 pcre_minor=`grep PCRE_MINOR $PCRE_INCDIR/pcre.h | sed -e 's/[^0-9]//g'`
46 PHP_ADD_LIBRARY_WITH_PATH(pcre, $PCRE_LIBDIR)
50 PHP_NEW_EXTENSION(pcre, php_pcre.c, no)
51 PHP_INSTALL_HEADERS([ext/pcre], [php_pcre.h])
64 PHP_NEW_EXTENSION(pcre, $pcrelib_sources php_pcre.c, no,,$PHP_PCRE_CFLAGS)
[all …]
H A Dphp_pcre.h37 PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra **extra, int *options TSRMLS_DC);
38 PHPAPI pcre* pcre_get_compiled_regex_ex(char *regex, pcre_extra **extra, int *preg_options, int *co…
44 pcre *re;
69 ZEND_BEGIN_MODULE_GLOBALS(pcre)
74 ZEND_END_MODULE_GLOBALS(pcre)
H A Dphp_pcre.c56 ZEND_DECLARE_MODULE_GLOBALS(pcre) in ZEND_DECLARE_MODULE_GLOBALS() argument
124 static PHP_MINFO_FUNCTION(pcre) in PHP_INI_END()
136 static PHP_MINIT_FUNCTION(pcre) in PHP_MINIT_FUNCTION() argument
251 pcre *re = NULL; in pcre_get_compiled_regex_cache()
1978 PHP_MINIT(pcre),
1979 PHP_MSHUTDOWN(pcre),
1982 PHP_MINFO(pcre),
1984 PHP_MODULE_GLOBALS(pcre),
1985 PHP_GINIT(pcre),
1986 PHP_GSHUTDOWN(pcre),
[all …]
/PHP-5.5/ext/filter/
H A Dconfig.m47 PHP_ARG_WITH(pcre-dir, pcre install prefix,
8 [ --with-pcre-dir FILTER: pcre install prefix], no, no)
46 PHP_ADD_EXTENSION_DEP(filter, pcre)
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre.h325 typedef struct real_pcre pcre; typedef
540 PCRE_EXP_DECL pcre *pcre_compile(const char *, int, const char **, int *,
555 PCRE_EXP_DECL int pcre_copy_named_substring(const pcre *, const char *,
567 PCRE_EXP_DECL int pcre_dfa_exec(const pcre *, const pcre_extra *,
579 PCRE_EXP_DECL int pcre_jit_exec(const pcre *, const pcre_extra *,
594 PCRE_EXP_DECL int pcre_fullinfo(const pcre *, const pcre_extra *, int,
600 PCRE_EXP_DECL int pcre_get_named_substring(const pcre *, const char *,
606 PCRE_EXP_DECL int pcre_get_stringnumber(const pcre *, const char *);
630 PCRE_EXP_DECL int pcre_refcount(pcre *, int);
633 PCRE_EXP_DECL pcre_extra *pcre_study(const pcre *, int, const char **);
[all …]
H A DREADME16 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-xxx.tar.gz
17 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-xxx.tar.bz2
18 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-xxx.zip
187 into /source/pcre/pcre-xxx, but you want to build it in /build/pcre/pcre-xxx:
189 cd /build/pcre/pcre-xxx
190 /source/pcre/pcre-xxx/configure
466 pcre-config
483 pcre.h
494 pcre.3
495 pcre*.3 (lots more pages, all starting "pcre")
[all …]
H A Dpcre_refcount.c73 pcre_refcount(pcre *argument_re, int adjust) in pcre_refcount()
H A Dpcreposix.c297 (void)pcre_fullinfo((const pcre *)preg->re_pcre, NULL, PCRE_INFO_CAPTURECOUNT, in regcomp()
331 (REAL_PCRE_OPTIONS((const pcre *)preg->re_pcre) & PCRE_NO_AUTO_CAPTURE) != 0; in regexec()
376 rc = pcre_exec((const pcre *)preg->re_pcre, NULL, string + so, (eo - so), in regexec()
/PHP-5.5/ext/pcre/tests/
H A Dbug41638.phpt2 Bug #41638 (pcre 7.0 regression)
10 // these two are from Magnus Holmgren (extracted from a pcre-dev mailing list post)
H A Dbug52732.phpt4 pcre.backtrack_limit=1
H A Dbug38600.phpt2 Bug #38600 (infinite loop in pcre with extended class)
H A Dbug41050.phpt2 Bug #41050 (pcre 7.0 regression)
H A Dbug40909.phpt2 Bug #40909 (pcre 7.0 regression)
H A Dbacktrack_limit.phpt10 pcre.backtrack_limit=2
H A Dpreg_match_basic_002.phpt7 * Source code: ext/pcre/php_pcre.c
H A Dpreg_match_variation1.phpt7 * Function is implemented in ext/pcre/php_pcre.c
H A Drecursion_limit.phpt10 pcre.recursion_limit=2
H A Dbug40195.phpt2 Bug #40195 (pcre 6.7 regression)
H A Dbug42298.phpt2 Bug #42298 (pcre gives bogus results with /u)
H A Dpcre.constants.phpt2 Test for pre-defined pcre constants
/PHP-5.5/ext/zip/
H A Dconfig.m413 PHP_ARG_WITH(pcre-dir, pcre install prefix,
14 [ --with-pcre-dir ZIP: pcre install prefix], no, no)

Completed in 69 milliseconds

1234