Searched refs:grapheme_extract (Results 1 – 7 of 7) sorted by relevance
/php-src/ext/intl/tests/ |
H A D | bug68447.phpt | 2 Bug #68447: grapheme_extract take an extra trailing character 8 echo grapheme_extract($katsushikaku, 1) . "\n"; 11 echo grapheme_extract($haiyore, 1, GRAPHEME_EXTR_COUNT) . "\n"; 12 echo grapheme_extract($haiyore, 2, GRAPHEME_EXTR_COUNT) . "\n"; 13 echo grapheme_extract($haiyore, 6, GRAPHEME_EXTR_MAXBYTES) . "\n"; 14 echo grapheme_extract($haiyore, 9, GRAPHEME_EXTR_MAXBYTES) . "\n"; 15 echo grapheme_extract($haiyore, 12, GRAPHEME_EXTR_MAXBYTES) . "\n"; 16 echo grapheme_extract($haiyore, 1, GRAPHEME_EXTR_MAXCHARS) . "\n"; 17 echo grapheme_extract($haiyore, 2, GRAPHEME_EXTR_MAXCHARS) . "\n"; 18 echo grapheme_extract($haiyore, 3, GRAPHEME_EXTR_MAXCHARS) . "\n";
|
H A D | bug62083.phpt | 2 Bug #62083: grapheme_extract() leaks memory 9 grapheme_extract(-1, -1, -1,-1, $arr1); 15 grapheme_extract(): Argument #3 ($type) must be one of GRAPHEME_EXTR_COUNT, GRAPHEME_EXTR_MAXBYTES,…
|
H A D | grapheme.phpt | 630 $result = grapheme_extract($test[0], $test[1]); 699 $result = grapheme_extract($test[0], $test[1], GRAPHEME_EXTR_MAXBYTES); 1119 extract from "abc" "3" graphemes - grapheme_extract = abc == abc 1120 extract from "abc" "2" graphemes - grapheme_extract = ab == ab 1121 extract from "abc" "1" graphemes - grapheme_extract = a == a 1122 extract from "abc" "0" graphemes - grapheme_extract = == 1137 extract from "a%CC%8Abc" "3" graphemes - grapheme_extract = a%CC%8Abc == a%CC%8Abc 1138 extract from "a%CC%8Abc" "2" graphemes - grapheme_extract = a%CC%8Ab == a%CC%8Ab 1139 extract from "a%CC%8Abc" "1" graphemes - grapheme_extract = a%CC%8A == a%CC%8A 1170 extract from "abc" "0" graphemes - grapheme_extract GRAPHEME_EXTR_MAXBYTES = == [all …]
|
H A D | grapheme2.phpt | 618 $result = grapheme_extract($test[0], $test[1]); 687 $result = grapheme_extract($test[0], $test[1], GRAPHEME_EXTR_MAXBYTES); 1107 extract from "abc" "3" graphemes - grapheme_extract = abc == abc 1108 extract from "abc" "2" graphemes - grapheme_extract = ab == ab 1109 extract from "abc" "1" graphemes - grapheme_extract = a == a 1110 extract from "abc" "0" graphemes - grapheme_extract = == 1125 extract from "a%CC%8Abc" "3" graphemes - grapheme_extract = a%CC%8Abc == a%CC%8Abc 1126 extract from "a%CC%8Abc" "2" graphemes - grapheme_extract = a%CC%8Ab == a%CC%8Ab 1127 extract from "a%CC%8Abc" "1" graphemes - grapheme_extract = a%CC%8A == a%CC%8A 1158 extract from "abc" "0" graphemes - grapheme_extract GRAPHEME_EXTR_MAXBYTES = == [all …]
|
/php-src/ext/intl/grapheme/ |
H A D | grapheme_string.c | 708 PHP_FUNCTION(grapheme_extract) in PHP_FUNCTION() argument
|
/php-src/ext/intl/ |
H A D | php_intl.stub.php | 451 function grapheme_extract(string $haystack, int $size, int $type = GRAPHEME_EXTR_COUNT, int $offset… function
|
H A D | php_intl_arginfo.h | 902 ZEND_FUNCTION(grapheme_extract); 1089 ZEND_FE(grapheme_extract, arginfo_grapheme_extract)
|
Completed in 24 milliseconds