/PHP-7.3/ext/iconv/tests/ |
H A D | bug51250.phpt | 9 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?B?Kg==?= .", $m)); 10 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?Q?*?= .", $m)); 14 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?B?Kg==?= .")); 15 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?Q?*?= .")); 20 string(23) "Legal encoded-word: * ." 21 string(23) "Legal encoded-word: * ." 22 string(24) "Illegal encoded-word: ." 23 string(23) "Illegal encoded-word: ." 24 string(23) "Legal encoded-word: * ." 25 string(23) "Legal encoded-word: * ." [all …]
|
/PHP-7.3/ext/mbstring/tests/ |
H A D | mb_ereg_named_subpatterns.phpt | 11 mb_ereg('(?<wsp>\s*)(?<word>\w+)', ' 中国', $m); 13 mb_ereg('(?<wsp>\s*)(?<word>\w+)', '国', $m); 15 mb_ereg('(\s*)(?<word>\w+)', ' 中国', $m); 28 ["word"]=> 40 ["word"]=> 48 ["word"]=>
|
H A D | mb_ereg_replace_named_subpatterns.phpt | 11 // \k<word> syntax 13 // \k'word' syntax 14 echo mb_ereg_replace('(?<word>[a-z]+)',"<\k'word'>", 'abc def ghi'), PHP_EOL;
|
H A D | mb_ereg_search_named_subpatterns.phpt | 12 mb_ereg_search('(?<wsp>\s*)(?<word>\w+)(?<punct>[?!])'); 27 ["word"]=>
|
H A D | mb_ereg_replace_callback.phpt | 16 echo mb_ereg_replace_callback('(?<word>\w+) (?<digit>\d+).*', function ($m) { 17 return sprintf("%s-%s", $m['digit'], $m['word']);
|
H A D | mb_decode_mimeheader_variation2.phpt | 11 * Description: Decodes the MIME "encoded-word" in the string 37 foreach ($encoded_words as $word) { 38 var_dump(bin2hex(mb_decode_mimeheader($word)));
|
H A D | bug65544.phpt | 2 Bug #65544: mb title case conversion-first word in quotation isn't capitalized
|
H A D | mb_decode_mimeheader_variation3.phpt | 11 * Description: Decodes the MIME "encoded-word" in the string
|
H A D | mb_decode_mimeheader_basic.phpt | 11 * Description: Decodes the MIME "encoded-word" in the string
|
/PHP-7.3/ext/pcre/tests/ |
H A D | bug34790.phpt | 6 $string = 'what the word and the other word the'; 7 preg_match_all('/(?P<word>the)/', $string, $matches); 8 return $matches['word'];
|
/PHP-7.3/ext/standard/ |
H A D | metaphone.c | 26 static int metaphone(unsigned char *word, size_t word_len, zend_long max_phonemes, zend_string **ph… 110 #define Next_Letter (toupper(word[w_idx+1])) 112 #define Curr_Letter (toupper(word[w_idx])) 114 #define Look_Back_Letter(n) (w_idx >= n ? toupper(word[w_idx-n]) : '\0') 118 #define After_Next_Letter (Next_Letter != '\0' ? toupper(word[w_idx+2]) \ 120 #define Look_Ahead_Letter(n) (toupper(Lookahead((char *) word+w_idx, n))) 125 static char Lookahead(char *word, int how_far) in Lookahead() argument 129 for (idx = 0; word[idx] != '\0' && idx < how_far; idx++); in Lookahead() 132 letter_ahead = word[idx]; /* idx will be either == to how_far or in Lookahead() 168 static int metaphone(unsigned char *word, size_t word_len, zend_long max_phonemes, zend_string **ph… in metaphone() argument [all …]
|
/PHP-7.3/ext/enchant/ |
H A D | enchant.c | 103 ZEND_ARG_INFO(0, word) 109 ZEND_ARG_INFO(0, word) 710 char *word; in PHP_FUNCTION() local 725 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) { in PHP_FUNCTION() 754 char *word; in PHP_FUNCTION() local 773 char *word; in PHP_FUNCTION() local 804 char *word; in PHP_FUNCTION() local 814 enchant_dict_add_to_personal(pdict->pdict, word, wordlen); in PHP_FUNCTION() 823 char *word; in PHP_FUNCTION() local 833 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION() [all …]
|
/PHP-7.3/ext/com_dotnet/tests/ |
H A D | bug66431_1.phpt | 8 new COM("word.application", NULL, CP_UTF8); 22 $Wrd = new COM("word.application", NULL, CP_UTF8); 30 $Wrd = new COM("word.application", NULL, CP_UTF8); 37 /* trim the returned text as we'll get windows eol from a word doc. */
|
/PHP-7.3/ext/gmp/tests/ |
H A D | gmp_import.phpt | 53 // Invalid word sizes 77 Warning: gmp_import(): Input length must be a multiple of word size in %s on line %d 80 Warning: gmp_import(): Input length must be a multiple of word size in %s on line %d 83 Warning: gmp_import(): Input length must be a multiple of word size in %s on line %d 86 Warning: gmp_import(): Invalid options: Conflicting word orders in %s on line %d 89 Warning: gmp_import(): Invalid options: Conflicting word endianness in %s on line %d
|
H A D | gmp_export.phpt | 59 // Invalid word sizes 79 Warning: gmp_export(): Invalid options: Conflicting word orders in %s on line %d 82 Warning: gmp_export(): Invalid options: Conflicting word endianness in %s on line %d
|
/PHP-7.3/ext/pspell/ |
H A D | pspell.c | 97 ZEND_ARG_INFO(0, word) 102 ZEND_ARG_INFO(0, word) 113 ZEND_ARG_INFO(0, word) 118 ZEND_ARG_INFO(0, word) 498 char *word; in PHP_FUNCTION() local 507 if (pspell_manager_check(manager, word)) { in PHP_FUNCTION() 520 char *word; in PHP_FUNCTION() local 534 wl = pspell_manager_suggest(manager, word); in PHP_FUNCTION() 579 char *word; in PHP_FUNCTION() local 609 char *word; in PHP_FUNCTION() local [all …]
|
/PHP-7.3/ext/enchant/tests/ |
H A D | dict_quick_check_01.phpt | 15 $word = "aspell"; 22 enchant_dict_quick_check($requestDict,$word,$sugs);
|
H A D | dict_check.phpt | 29 echo("dict check new word failed\n");
|
/PHP-7.3/ext/intl/tests/ |
H A D | uconverter_oop_callback.phpt | 28 foreach(array("regular", "irregul\xC1\xA1r", "\xC2\xA1unsupported!") as $word) { 29 $c->convert($word);
|
H A D | uconverter_oop_callback2.phpt | 28 foreach(array("regular", "irregul\xC1\xA1r", "\xC2\xA1unsupported!") as $word) { 29 $c->convert($word);
|
/PHP-7.3/ext/standard/tests/strings/ |
H A D | strrchr_basic.phpt | 12 var_dump( strrchr("Hello, World", "Hello") ); //needle as a first word of haystack 20 //needle as second word of haystack
|
H A D | ucwords_variation5.phpt | 6 * Description: Uppercase the first character of each word in a string
|
/PHP-7.3/ext/openssl/tests/ |
H A D | openssl_pbkdf2_basic.phpt | 18 var_dump(bin2hex(openssl_pbkdf2("pass\0word", "sa\0lt", 16, 4096)));
|
/PHP-7.3/ext/pdo_pgsql/tests/ |
H A D | bug62479.phpt | 62 $sql = sprintf($template, "my pass''word"); 65 $testConn = new PDO($config['ENV']['PDOTEST_DSN'], $user, "my pass'word");
|
/PHP-7.3/ext/mbstring/oniguruma/doc/ |
H A D | RE | 41 \w word character 49 \W non-word char 161 \b word boundary 162 \B non-word boundary 220 word alphanumeric, "_" and multibyte characters 242 word Letter | Mark | Decimal_Number | Connector_Punctuation 255 W: ASCII only word (\w, \p{Word}, [[:word:]]) 256 ASCII only word bound (\b) 261 lower, print, punct, space, upper, xdigit, word) 302 (Each character of the name must be a word character.)
|