Home
last modified time | relevance | path

Searched refs:re (Results 176 – 200 of 224) sorted by relevance

123456789

/PHP-7.4/ext/pcre/tests/
H A Dpreg_match_error4.phpt6 $re = '{^(\\s*\\{\\s*(?:"(?:[^\\0-\\x09\\x0a-\\x1f\\\\"]+|\\\\["bfnrt/\\\\]|\\\\u[a-fA-F0-9]{4})*"\…
907 $count = preg_match($re, $str, $matches);
/PHP-7.4/ext/zip/
H A Dphp_zip.c651 pcre2_code *re = NULL; in php_zip_pcre() local
656 re = pcre_get_compiled_regex(regexp, &capture_count); in php_zip_pcre()
657 if (!re) { in php_zip_pcre()
683 match_data = php_pcre_create_match_data(capture_count, re); in php_zip_pcre()
689 …rc = pcre2_match(re, (PCRE2_SPTR)ZSTR_VAL(namelist[i]), ZSTR_LEN(namelist[i]), 0, 0, match_data, m… in php_zip_pcre()
/PHP-7.4/docs/
H A Dparameter-parsing-api.md128 If you're in doubt, use check_parameters.php script to the parameters and their
/PHP-7.4/ext/fileinfo/libmagic/
H A Dsoftmagic.c483 pcre2_code *re = php_pcre_pce_re(pce); in check_fmt() local
484 pcre2_match_data *match_data = php_pcre_create_match_data(0, re); in check_fmt()
486 rv = pcre2_match(re, (PCRE2_SPTR)fmt, strlen(fmt), 0, 0, match_data, php_pcre_mctx()) > 0; in check_fmt()
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct.phpt236 …printf("[030] You're trying to run the tests with charset '%s' which seems not supported by the se…
/PHP-7.4/
H A DCONTRIBUTING.md117 about what you're working on, you can contact us via the
293 changes themselves. We'll assume you're basically familiar with Git, but feel
H A DUPGRADING.INTERNALS63 - ZEND_ACC_... flags are re-numbered.
/PHP-7.4/ext/pgsql/
H A Dpgsql.c5758 pcre2_code *re; local
5778re = pcre2_compile((PCRE2_SPTR)regex, regex_len, options, &errnumber, &err_offset, php_pcre_cctx()…
5779 if (NULL == re) {
5786 match_data = php_pcre_create_match_data(0, re);
5788 pcre2_code_free(re);
5792 res = pcre2_match(re, (PCRE2_SPTR)str, str_len, 0, 0, match_data, php_pcre_mctx());
5794 pcre2_code_free(re);
/PHP-7.4/ext/standard/tests/file/
H A Dfgetcsv_variation18.phpt57 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation22.phpt59 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation29.phpt59 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation30.phpt59 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation31.phpt59 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation15.phpt55 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation16.phpt57 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation8.phpt64 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation9.phpt63 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation1.phpt61 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation17.phpt57 // close the file if the mode to be used is read mode and re-open using read mode
/PHP-7.4/ext/intl/tests/
H A Dut_common.inc5 * It they're equal then show one of them.
/PHP-7.4/ext/mbstring/
H A Dmbstring.c72 #define onig_match_with_param(re, str, end, at, region, option, mp) \ argument
73 onig_match(re, str, end, at, region, option)
1450 void *re = NULL; in PHP_INI_MH() local
1458 if (!(re = _php_mb_compile_regex(ZSTR_VAL(tmp)))) { in PHP_INI_MH()
1468 MBSTRG(http_output_conv_mimetypes) = re; in PHP_INI_MH()
/PHP-7.4/ext/spl/
H A Dspl_iterators.c2006 pcre2_code *re; in SPL_METHOD() local
2037 re = php_pcre_pce_re(intern->u.regex.pce); in SPL_METHOD()
2038 match_data = php_pcre_create_match_data(0, re); in SPL_METHOD()
2042 …rc = pcre2_match(re, (PCRE2_SPTR)ZSTR_VAL(subject), ZSTR_LEN(subject), 0, 0, match_data, php_pcre_… in SPL_METHOD()
/PHP-7.4/ext/oci8/
H A Dconfig.m4248 AC_MSG_CHECKING([if we're at 64-bit platform])
/PHP-7.4/sapi/fpm/tests/
H A Dfcgi.inc176 * Define whether or not PHP should attempt to re-use sockets opened by previous
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch1709 /* Do this here and now, because struct stat gets re-defined on solaris */
3326 + pcre2_code *re = php_pcre_pce_re(pce);
3327 + pcre2_match_data *match_data = php_pcre_create_match_data(0, re);
3329 + rv = pcre2_match(re, (PCRE2_SPTR)fmt, strlen(fmt), 0, 0, match_data, php_pcre_mctx()) > 0;

Completed in 93 milliseconds

123456789