Home
last modified time | relevance | path

Searched refs:item (Results 176 – 200 of 333) sorted by relevance

12345678910>>...14

/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp1252_to_utf8_2.phpt23 $item = iconv('cp1252', 'utf-8', "tsch��"); // cp1252 string
24 $prefix = create_data("dir_cp1252", "{$item}3");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}7";
H A Dtest_cp1252_to_utf8_5.phpt23 $item = iconv('cp1252', 'utf-8', "Vol��ao"); // cp1252 string
24 $prefix = create_data("dir2_cp1252", "{$item}3");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}7";
H A Dtest_cp1254_2.phpt26 $item = "�okbaytl� i�leri";
27 $prefix = create_data("dir_cp1254", "{$item}42}", 1254);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp932_to_utf8_2.phpt23 $item = iconv('cp932', 'utf-8', "�e�X�g�}���`�o�C�g�E�p�X"); // cp932 string
24 $prefix = create_data("dir_cp932", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp936_2.phpt26 $item = "�yԇ���ֹ�·��"; // cp936 string
27 $prefix = create_data("file_cp936", $item . "25", 936);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}25";
H A Dtest_cp1250_to_utf8_5.phpt23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars
24 $prefix = create_data("dir_cp1250", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp932_2.phpt26 $item = "�e�X�g�}���`�o�C�g�E�p�X"; // cp932 string
27 $prefix = create_data("dir_cp932", "{$item}42}", 932);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
/php-src/ext/dom/tests/
H A Ddom007.phpt52 …echo "Index $x: ".$nots->item($x)->nodeName." (".$nots->item($x)->systemId.") (".$nots->item($x)->…
77 $xkeys[] = "Index: ".$ents->item($x)->nodeName."\n";
85 $node = $ents->item(3);
/php-src/ext/gettext/tests/
H A Dgettext_ngettext.phpt19 var_dump(ngettext('item', 'items', 1));
20 var_dump(ngettext('item', 'items', 2));
H A Dgettext_dcgettext.phpt21 var_dump(dcgettext('dngettextTest', 'item', LC_CTYPE));
22 var_dump(dcgettext('dngettextTest', 'item', LC_MESSAGES));
H A Dgettext_dngettext-plural.phpt19 var_dump(dngettext('dngettextTest', 'item', 'items', 1));
20 var_dump(dngettext('dngettextTest', 'item', 'items', 2));
/php-src/ext/spl/tests/
H A Dbug51119.phpt10 foreach ($limitIterator as $item) {
11 echo $item . "\n";
H A DSplFixedArray_offsetUnset_string.phpt2 Check removing an item from an array when the offset is not an integer.
15 // remove an item
/php-src/Zend/tests/
H A Dbug49269.phpt21 foreach ((true ? $array_object : $array_object) as $item) echo "$item\n";
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_override_encoding_incompatible_charset.phpt28 var_dump(iconv('UTF-8', 'ISO-8859-1', $doc->getElementsByTagName('title')->item(0)->textContent));
29 var_dump(iconv('UTF-8', 'ISO-8859-1', $doc->getElementsByTagName('body')->item(0)->textContent));
/php-src/ext/sysvmsg/
H A Dsysvmsg.c144 zval *item; in PHP_FUNCTION() local
147 …if ((item = zend_hash_str_find(Z_ARRVAL_P(data), "msg_perm.uid", sizeof("msg_perm.uid") - 1)) != N… in PHP_FUNCTION()
148 stat.msg_perm.uid = zval_get_long(item); in PHP_FUNCTION()
150 …if ((item = zend_hash_str_find(Z_ARRVAL_P(data), "msg_perm.gid", sizeof("msg_perm.gid") - 1)) != N… in PHP_FUNCTION()
151 stat.msg_perm.gid = zval_get_long(item); in PHP_FUNCTION()
153 …if ((item = zend_hash_str_find(Z_ARRVAL_P(data), "msg_perm.mode", sizeof("msg_perm.mode") - 1)) !=… in PHP_FUNCTION()
154 stat.msg_perm.mode = zval_get_long(item); in PHP_FUNCTION()
156 …if ((item = zend_hash_str_find(Z_ARRVAL_P(data), "msg_qbytes", sizeof("msg_qbytes") - 1)) != NULL)… in PHP_FUNCTION()
157 stat.msg_qbytes = zval_get_long(item); in PHP_FUNCTION()
/php-src/ext/soap/tests/bugs/
H A Dbug73538.phpt33 …ap.org/soap/encoding/"><SOAP-ENV:Header><ns2:Header><item><key>something</key><value>2</value></it…
35 …ap.org/soap/encoding/"><SOAP-ENV:Header><ns2:Header><item><key>something</key><value>2</value></it…
/php-src/ext/soap/tests/interop/Round2/Base/
H A Dr2_base_007w.phpt18 …C:arrayType="xsd:string[1]" xsi:type="ns2:ArrayOfstring"><item xsi:type="xsd:string">good</item></…
20 …C:arrayType="xsd:string[1]" xsi:type="ns2:ArrayOfstring"><item xsi:type="xsd:string">good</item></…
H A Dr2_base_007p.phpt16 …-ENC:arrayType="xsd:string[1]" xsi:type="SOAP-ENC:Array"><item xsi:type="xsd:string">good</item></…
18 …C:arrayType="xsd:string[1]" xsi:type="ns2:ArrayOfstring"><item xsi:type="xsd:string">good</item></…
/php-src/ext/date/tests/
H A DDatePeriod_by_ref_iterator.phpt12 foreach( $d as &$item )
14 echo $item->format(DateTime::ISO8601), "\n";
/php-src/ext/dom/lexbor/lexbor/core/
H A Dhash.c232 lexbor_hash_entry_t *item; in lexbor_hash_insert_by_entry() local
237 item = hash->table[table_idx]; in lexbor_hash_insert_by_entry()
239 if (item == NULL) { in lexbor_hash_insert_by_entry()
246 str = lexbor_hash_entry_str(item); in lexbor_hash_insert_by_entry()
248 if (item->length == length && search->cmp(str, key, length)) { in lexbor_hash_insert_by_entry()
249 return item; in lexbor_hash_insert_by_entry()
252 if (item->next == NULL) { in lexbor_hash_insert_by_entry()
256 item = item->next; in lexbor_hash_insert_by_entry()
260 item->next = entry; in lexbor_hash_insert_by_entry()
/php-src/ext/intl/tests/
H A Duconverter_getstandards_basic.phpt15 assertTrue(array_reduce($standards, function($carry, $item) { return $carry && is_string($item); },…
/php-src/ext/com_dotnet/tests/
H A D27974.phpt16 foreach ($v as $item) {
17 var_dump($item);
/php-src/ext/zend_test/tests/
H A Dobserver_zend_call_function_01.phpt11 function sum($carry, $item) {
12 $carry += $item;
/php-src/ext/standard/tests/array/
H A Darray_walk_basic2.phpt10 function test_alter(&$item, $key, $prefix)
14 var_dump($item); // value
20 function test_print($item, $key)
24 var_dump($item); // value

Completed in 29 milliseconds

12345678910>>...14