Home
last modified time | relevance | path

Searched refs:substring (Results 1 – 18 of 18) sorted by relevance

/PHP-7.2/ext/dom/
H A Dcharacterdata.c157 xmlChar *substring; in PHP_FUNCTION() local
189 if (substring) { in PHP_FUNCTION()
190 RETVAL_STRING((char *) substring); in PHP_FUNCTION()
191 xmlFree(substring); in PHP_FUNCTION()
316 substring = NULL; in PHP_FUNCTION()
324 substring = xmlStrcat(substring, second); in PHP_FUNCTION()
330 xmlFree(substring); in PHP_FUNCTION()
373 substring = NULL; in PHP_FUNCTION()
384 substring = xmlStrcat(substring, (xmlChar *) arg); in PHP_FUNCTION()
385 substring = xmlStrcat(substring, second); in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/mbstring/tests/
H A Dmb_substr_count_variation2.phpt11 * Description: Count the number of substring occurrences
136 Warning: mb_substr_count(): Empty substring in %s on line %d
141 Warning: mb_substr_count(): Empty substring in %s on line %d
149 Warning: mb_substr_count(): Empty substring in %s on line %d
157 Warning: mb_substr_count(): Empty substring in %s on line %d
162 Warning: mb_substr_count(): Empty substring in %s on line %d
167 Warning: mb_substr_count(): Empty substring in %s on line %d
184 Warning: mb_substr_count(): Empty substring in %s on line %d
189 Warning: mb_substr_count(): Empty substring in %s on line %d
H A Dmb_substr_count_basic.phpt11 * Description: Count the number of substring occurrences
H A Dmb_substr_count_error2.phpt11 * Description: Count the number of substring occurrences
H A Dmb_substr_count_variation4.phpt11 * Description: Count the number of substring occurrences
H A Dmb_substr_count_error1.phpt11 * Description: Count the number of substring occurrences
H A Dmb_substr_count_variation1.phpt11 * Description: Count the number of substring occurrences
H A Dmb_substr_count_variation3.phpt11 * Description: Count the number of substring occurrences
/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_get.c564 pcre_uchar *substring; in pcre_get_substring() local
569 substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1)); in pcre_get_substring()
570 if (substring == NULL) return PCRE_ERROR_NOMEMORY; in pcre_get_substring()
571 memcpy(substring, subject + ovector[stringnumber], IN_UCHARS(yield)); in pcre_get_substring()
572 substring[yield] = 0; in pcre_get_substring()
574 *stringptr = (const char *)substring; in pcre_get_substring()
576 *stringptr = (PCRE_SPTR16)substring; in pcre_get_substring()
578 *stringptr = (PCRE_SPTR32)substring; in pcre_get_substring()
H A DChangeLog130 8. A call of pcre_copy_named_substring() for a named substring whose number
1629 captured substring, but while checking the failing first alternative,
1630 substring 1 is temporarily captured. If the output vector supplied to
1858 subject after a captured substring, to make it easier to tell which of a
2626 6. When --colo(u)r was used in pcregrep, only the first matching substring in
3232 10. Fixed a bug in the documentation for get/copy named substring when
3897 13. Added the ability to use a named substring as a condition, using the
4744 more than* the number of the hightest numbered captured substring.
5782 9. As in 5.005, unlimited repeated groups that could match an empty substring
5784 runtime if any iteration does actually match an empty substring.
/PHP-7.2/ext/intl/tests/
H A Dgrapheme.phpt960 substring of "abc" from "3" - grapheme_substr = false == false
964 substring of "aa%CC%8Abco%CC%88O" from "5" - grapheme_substr = O == O
969 substring of "Abc" from "-5" - grapheme_substr = false == false
970 substring of "a%CC%8Abc" from "3" - grapheme_substr = false == false
971 substring of "abc" from "4" - grapheme_substr = false == false
972 substring of "abC" from "2" - grapheme_substr = C == C
973 substring of "abc" from "1" - grapheme_substr = bc == bc
974 substring of "Abc" from "1" - grapheme_substr with length 1 = b == b
975 substring of "abc" from "0" - grapheme_substr with length 2 = ab == ab
977 substring of "ababc" from "1" - grapheme_substr with length 2 = ba == ba
[all …]
H A Dgrapheme2.phpt960 substring of "abc" from "3" - grapheme_substr = false == false
964 substring of "aa%CC%8Abco%CC%88O" from "5" - grapheme_substr = O == O
969 substring of "Abc" from "-5" - grapheme_substr = false == false
970 substring of "a%CC%8Abc" from "3" - grapheme_substr = false == false
971 substring of "abc" from "4" - grapheme_substr = false == false
972 substring of "abC" from "2" - grapheme_substr = C == C
973 substring of "abc" from "1" - grapheme_substr = bc == bc
974 substring of "Abc" from "1" - grapheme_substr with length 1 = b == b
975 substring of "abc" from "0" - grapheme_substr with length 2 = ab == ab
977 substring of "ababc" from "1" - grapheme_substr with length 2 = ba == ba
[all …]
/PHP-7.2/ext/standard/tests/strings/
H A Dexplode1.phpt9 Description: Returns an array of strings, each of which is a substring of string
30 /* loop prints an array of strings, each of which is a substring of $string
/PHP-7.2/win32/build/
H A Dconfutils.js1250 …ldflags += " /PGD:$(PGOPGD_DIR)\\" + makefiletarget.substring(0, makefiletarget.indexOf(".")) + ".…
1432 var libname = dllname.substring(0, dllname.length-4) + ".lib";
1450 ldflags = " /PGD:$(PGOPGD_DIR)\\" + dllname.substring(0, dllname.indexOf(".")) + ".pgd";
/PHP-7.2/ext/pcre/pcrelib/doc/
H A Dpcre.txt1074 three integers per substring, whereas the POSIX interface provides only
3095 ovector, /* vector of integers for substring information */
3522 strings, each substring using a pair of integers. The remaining third
3578 offsets of the substring matched by the whole pattern, is (n+1)*3.
3915 There is no substring whose number is stringnumber.
3984 First, instead of a substring number, a substring name is given. Sec-
4122 ovector, /* vector of integers for substring information */
5554 matches "foobar", the first substring is still set to "foo".
6159 convenience function for extracting a captured substring by name.
6376 matches "aba" the value of the second captured substring is "b".
[all …]
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput21000 copy substring 5 failed -7
1062 get substring 4 failed -7
1075 get substring 4 failed -7
4455 copy substring three failed -7
6156 copy substring Z failed -7
6199 copy substring A failed -7
6245 get substring Z failed -7
6277 get substring A failed -7
14645 copy substring C failed -7
/PHP-7.2/
H A Dphp.ini-development1456 ; HTTP_REFERER has to contain this substring for the session to be
H A Dphp.ini-production1458 ; HTTP_REFERER has to contain this substring for the session to be

Completed in 96 milliseconds