/PHP-8.2/ext/intl/resourcebundle/ |
H A D | resourcebundle.c | 36 restype = ures_getType( source->child ); in resourcebundle_extract_value() 40 ufield = ures_getString( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value() 41 INTL_METHOD_CHECK_STATUS(source, "Failed to retrieve string value"); in resourcebundle_extract_value() 42 INTL_METHOD_RETVAL_UTF8(source, (UChar *)ufield, ilen, 0); in resourcebundle_extract_value() 46 bfield = ures_getBinary( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value() 47 INTL_METHOD_CHECK_STATUS(source, "Failed to retrieve binary value"); in resourcebundle_extract_value() 52 lfield = ures_getInt( source->child, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value() 58 vfield = ures_getIntVector( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value() 70 newrb->me = source->child; in resourcebundle_extract_value() 71 source->child = NULL; in resourcebundle_extract_value() [all …]
|
/PHP-8.2/ext/intl/tests/ |
H A D | collator_get_sort_key.phpt | 61 source: abc 63 source: abd 67 source: аа 69 source: а 71 source: z 73 source: 75 source: 77 source: 3 79 source: y 81 source: i [all …]
|
H A D | collator_get_sort_key_variant2.phpt | 61 source: abc 63 source: abd 65 source: aaa 67 source: аа 69 source: а 71 source: z 73 source: 75 source: 3 77 source: y 79 source: i [all …]
|
H A D | collator_get_sort_key_variant3.phpt | 61 source: abc 63 source: abd 65 source: aaa 67 source: аа 69 source: а 71 source: z 73 source: 75 source: 3 77 source: y 79 source: i [all …]
|
H A D | collator_get_sort_key_variant4.phpt | 61 source: abc 63 source: abd 65 source: aaa 67 source: аа 69 source: а 71 source: z 73 source: 75 source: 3 77 source: y 79 source: i [all …]
|
H A D | collator_get_sort_key_variant5.phpt | 61 source: abc 63 source: abd 65 source: aaa 67 source: аа 69 source: а 71 source: z 73 source: 75 source: 3 77 source: y 79 source: i [all …]
|
H A D | collator_get_sort_key_variant6.phpt | 61 source: abc 63 source: abd 65 source: aaa 67 source: аа 69 source: а 71 source: z 73 source: 75 source: 3 77 source: y 79 source: i [all …]
|
H A D | collator_get_sort_key_variant7.phpt | 61 source: abc 63 source: abd 65 source: aaa 67 source: аа 69 source: а 71 source: z 73 source: 75 source: 3 77 source: y 79 source: i [all …]
|
H A D | collator_get_sort_key_variant_icu76_1.phpt | 60 source: abc 62 source: abd 64 source: aaa 66 source: аа 68 source: а 70 source: z 72 source: 74 source: 3 76 source: y 78 source: i [all …]
|
/PHP-8.2/ext/tokenizer/tests/ |
H A D | token_get_all_basic.phpt | 10 $source = '<?php echo "Hello World"; ?>'; 11 echo "-- source string with PHP open and close tags --\n"; 12 var_dump( token_get_all($source) ); 15 $source = "echo 'Hello World';"; 16 echo "-- source string without PHP open and close tags --\n"; 17 var_dump( token_get_all($source) ); 23 -- source string with PHP open and close tags -- 82 -- source string without PHP open and close tags --
|
H A D | token_get_all_variation18.phpt | 8 * Testing token_get_all() with source string containing HTML code with PHP 12 echo "*** Testing token_get_all() : 'source' string with HTML tags ***\n"; 14 $source = ' 24 var_dump( token_get_all($source)); 29 *** Testing token_get_all() : 'source' string with HTML tags ***
|
/PHP-8.2/ext/intl/msgformat/ |
H A D | msgformat_parse.c | 28 static void msgfmt_do_parse(MessageFormatter_object *mfo, char *source, size_t src_len, zval *retur… in msgfmt_do_parse() argument 36 intl_convert_utf8_to_utf16(&usource, &usrc_len, source, src_len, &INTL_DATA_ERROR_CODE(mfo)); in msgfmt_do_parse() 56 char *source; in PHP_FUNCTION() local 63 &object, MessageFormatter_ce_ptr, &source, &source_len ) == FAILURE ) in PHP_FUNCTION() 71 msgfmt_do_parse(mfo, source, source_len, return_value); in PHP_FUNCTION() 84 char *source = NULL; in PHP_FUNCTION() local 91 &slocale, &slocale_len, &pattern, &pattern_len, &source, &src_len ) == FAILURE ) in PHP_FUNCTION() 132 msgfmt_do_parse(mfo, source, src_len, return_value); in PHP_FUNCTION()
|
/PHP-8.2/ext/standard/tests/file/ |
H A D | copy_variation2.phpt | 67 echo "Size of source file => "; 95 Size of source file => int(1500) 102 Size of source file => int(1500) 109 Size of source file => int(1500) 116 Size of source file => int(1500) 123 Size of source file => int(1500) 130 Size of source file => int(1500) 137 Size of source file => int(1500) 144 Size of source file => int(1500) 151 Size of source file => int(1500) [all …]
|
H A D | copy_variation14.phpt | 5 /* Test copy(): Trying to create a copy of non-existing source in an existing destination 6 and an existing source in non-existing destination */ 10 echo "*** Test copy() function: Trying to create a copy of non-existing source in existing destinat… 16 …opy($file_path."/nosuchfile.tmp", $file_path."/copy_nosuchfile.tmp") ); //With non-existing source 19 echo "\n*** Test copy() function: Trying to create copy of an existing source in non-existing desti… 22 var_dump( filesize($file) ); //size of the source 31 *** Test copy() function: Trying to create a copy of non-existing source in existing destination *** 36 *** Test copy() function: Trying to create copy of an existing source in non-existing destination *…
|
H A D | copy_variation16.phpt | 28 echo "- Size of source file => "; 48 echo "Size of source file => "; 79 - Size of source file => int(3500) 83 Size of source file => int(3500) 90 Size of source file => int(3500) 97 Size of source file => int(3500) 104 Size of source file => int(3500) 111 Size of source file => int(3500) 118 Size of source file => int(3500) 125 Size of source file => int(3500) [all …]
|
H A D | copy_variation6.phpt | 26 echo "Size of source file => "; 56 echo "Size of source file => "; 78 Size of source file => int(0) 85 Size of source file => int(0) 92 Size of source file => int(0) 99 Size of source file => int(0) 106 Size of source file => int(0) 113 Size of source file => int(0) 120 Size of source file => int(0) 127 Size of source file => int(0) [all …]
|
H A D | copy_variation2-win32-mb.phpt | 94 Size of source file => int(1500) 101 Size of source file => int(1500) 108 Size of source file => int(1500) 115 Size of source file => int(1500) 134 Size of source file => int(1500) 141 Size of source file => int(1500) 148 Size of source file => int(1500) 161 Size of source file => int(1500) 168 Size of source file => int(1500) 175 Size of source file => int(1500) [all …]
|
H A D | copy_variation2-win32.phpt | 94 Size of source file => int(1500) 101 Size of source file => int(1500) 108 Size of source file => int(1500) 115 Size of source file => int(1500) 134 Size of source file => int(1500) 141 Size of source file => int(1500) 148 Size of source file => int(1500) 161 Size of source file => int(1500) 168 Size of source file => int(1500) 175 Size of source file => int(1500) [all …]
|
H A D | copy_variation1.phpt | 31 echo "Size of the source file before copy operation => "; 52 echo "Size of source file => "; 80 Size of source file => int(1500) 87 Size of source file => int(1500) 94 Size of source file => int(1500) 101 Size of source file => int(1500) 108 Size of source file => int(1500) 115 Size of source file => int(1500) 122 Size of source file => int(1500) 129 Size of source file => int(1500) [all …]
|
H A D | copy_variation16-win32.phpt | 28 echo "- Size of source file => "; 48 echo "Size of source file => "; 80 - Size of source file => int(3500) 84 Size of source file => int(3500) 91 Size of source file => int(3500) 98 Size of source file => int(3500) 105 Size of source file => int(3500) 112 Size of source file => int(3500) 119 Size of source file => int(3500) 126 Size of source file => int(3500) [all …]
|
H A D | copy_variation6-win32.phpt | 10 /* Test copy() function: Trying to create copy of source file 26 echo "Size of source file => "; 57 echo "Size of source file => "; 80 Size of source file => int(0) 87 Size of source file => int(0) 94 Size of source file => int(0) 101 Size of source file => int(0) 108 Size of source file => int(0) 115 Size of source file => int(0) 122 Size of source file => int(0) [all …]
|
H A D | copy_variation3.phpt | 33 echo "Size of the source file before copy operation => "; 37 echo "\n-- Now applying copy() on source file to create copies --"; 54 echo "Size of source file => "; 75 Size of the source file before copy operation => int(1500) 77 -- Now applying copy() on source file to create copies -- 82 Size of source file => int(1500) 89 Size of source file => int(1500) 96 Size of source file => int(1500) 103 Size of source file => int(1500)
|
/PHP-8.2/ext/sockets/tests/ |
H A D | mcast_ipv6_recv.phpt | 112 echo "blocking source\n"; 116 "source" => $sblock, 125 echo "unblocking source\n"; 129 "source" => $sblock, 152 "source" => $sblock, 163 "source" => $sblock, 176 "source" => $sblock, 208 blocking source 213 unblocking source 222 joining source group [all …]
|
H A D | mcast_ipv4_recv.phpt | 86 echo "blocking source\n"; 90 "source" => $sblock, 99 echo "unblocking source\n"; 103 "source" => $sblock, 122 echo "joining source group\n"; 126 "source" => $sblock, 137 "source" => $sblock, 179 blocking source 184 unblocking source 193 joining source group [all …]
|
/PHP-8.2/ext/ |
H A D | ext_skel.php | 239 $source = file_get_contents($file); 241 if ($source === false) { 245 $source = str_replace('%EXTNAME%', $options['ext'], $source); 246 $source = str_replace('%EXTNAMECAPS%', strtoupper($options['ext']), $source); 282 $source = str_replace('%HEADER%', $header, $source); 285 if (!file_put_contents($file, $source)) {
|