Home
last modified time | relevance | path

Searched refs:list (Results 51 – 75 of 314) sorted by relevance

12345678910>>...13

/PHP-7.4/Zend/tests/
H A Dbug72395.phpt2 Bug #72395 (list() regression)
5 list(,,$a,,$b,) = array(1, 2, 3, 4, 5, 6);
H A Dbug27598.phpt2 Bug #27598 (list() array key assignment causes HUGE memory leak)
5 list($out[0]) = array(1);
H A Dlist_004.phpt2 list() with array reference
9 list(,$a) = $b;
H A Dlist_011.phpt2 Disallow list() usage as if it were an array
6 var_dump(list(1, 2, 3));
H A Dbug39304.phpt2 Bug #39304 (Segmentation fault with list unpacking of string offset)
6 list($a, $b) = $s[0];
H A Dforeach_list_002.phpt6 foreach (array(array(1,2), array(3,4)) as list($a, )) {
12 foreach($array as list(, $a)) {
H A Dmethods-on-non-objects-usort.phpt10 $list= [1, 4, 2, 3, -1];
11 usort($list, function($a, $b) use ($comparator) {
19 var_dump($list);
H A Dlist_mixed_keyed_unkeyed.phpt2 list() with both keyed and unkeyed elements
12 list($zero, 1 => $one, "foo" => $foo) = $contrivedKeyedAndUnkeyedArrayExample;
H A Dlist_007.phpt2 Using lambda with list()
6 list($x, $y) = function() { };
H A Dbug73663_2.phpt2 Bug #73663.2 ("Invalid opcode 65/16/8" occurs with a variable created with list())
11 change(list($val) = $array);
H A Dlist_keyed_non_literals.phpt2 list() with constant keys
18 list(
/PHP-7.4/Zend/tests/list/
H A Dlist_reference_008.phpt2 "Reference Unpacking - Oddities" list()
8 list(&$a, &$b) = $arr;
21 list(&$a, $a) = $arr;
32 list(&$a, &$b) = $a;
H A Dlist_reference_010.phpt2 "Reference Unpacking - Compile Error (scalar)" list()
5 list(&$foo) = [42];
H A Dlist_reference_006.phpt2 "Reference Unpacking - Class ArrayAccess No Reference" list()
15 list(&$one, $two) = $a;
19 list(,,list($var)) = $a;
H A Dlist_reference_002.phpt2 "Reference Unpacking - New Reference" list()
6 list(&$a, &$b) = $arr;
/PHP-7.4/ext/spl/tests/
H A DSplDoublyLinkedList_current.phpt7 $list = new SplDoublyLinkedList();
8 var_dump($list->current());
H A DSplDoublyLinkedList_current_empty.phpt8 $list = new SplDoublyLinkedList();
9 var_dump($list->current());
H A DRecursiveDirectoryIterator_getSubPathname_basic.phpt19 $list = [];
22 $list[] = $it->getSubPathname();
25 asort($list);
26 foreach ($list as $item) {
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dqueue.c720 key = list[ low ]; in QuickSort()
724 while(Comp(list[i], key) < 0) in QuickSort()
728 while(Comp(list[j], key) > 0) in QuickSort()
732 temp = list[i]; in QuickSort()
733 list[i] = list[j]; in QuickSort()
734 list[j] = temp; in QuickSort()
739 temp = list[low]; in QuickSort()
740 list[low] = list[j]; in QuickSort()
741 list[j] = temp; in QuickSort()
743 QuickSort(list, low, j-1, Comp); in QuickSort()
[all …]
/PHP-7.4/ext/dom/tests/
H A Dbug38438.phpt7 $list = new DOMNodeList();
8 var_dump($list->item(0));
/PHP-7.4/ext/mbstring/tests/
H A Dmb_encoding_aliases.phpt8 $list = mb_encoding_aliases("ASCII");
9 sort($list);
10 var_dump($list);
/PHP-7.4/Zend/tests/generators/
H A Dbug66041.phpt2 Bug #66041: list() fails to unpack yielded ArrayAccess object
6 list($value) = yield;
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug42359.phpt15 [0] => list listItem {anonymous1}
18 [3] => list listItem2 {enumItem}
/PHP-7.4/ext/odbc/
H A Dphp_odbc_includes.h243 int odbc_add_result(HashTable *list, odbc_result *result);
244 odbc_result *odbc_get_result(HashTable *list, int count);
245 void odbc_del_result(HashTable *list, int count);
246 int odbc_add_conn(HashTable *list, HDBC conn);
247 odbc_connection *odbc_get_conn(HashTable *list, int count);
248 void odbc_del_conn(HashTable *list, int ind);
/PHP-7.4/ext/opcache/tests/
H A Dbug74019.phpt2 Bug #74019 (Segfault with list)
13 list($a, $b) = A::CONSTS;

Completed in 28 milliseconds

12345678910>>...13