/PHP-8.3/ext/dom/tests/ |
H A D | bug80332_2.phpt | 20 …echo "list[$key_formatted] id attribute: ", $list[$key] ? $list[$key]->getAttribute('id') : '/', "… 23 test($list, 0); 24 test($list, false); 25 test($list, true); 26 test($list, null); 27 test($list, '0'); 28 test($list, '0.5'); 29 test($list, '1'); 31 test($list, 'attr2'); 32 test($list, 'hi'); [all …]
|
H A D | DOMDocument_getElementsByTagName_liveness_tree_walk.phpt | 13 var_dump($list->length); 18 var_dump($list->item($i)); 21 foreach ($list as $item) { 27 var_dump($list->length); 32 var_dump($list->item($i)); 43 $list->item(0)->remove(); 44 $list->item(0)->remove(); 45 $list->item(0)->remove(); 46 var_dump($list->length); 47 var_dump($list->item(0)); [all …]
|
H A D | bug67474.phpt | 11 $list = $doc->getElementsByTagNameNS('', 'a'); 12 var_dump($list->length); 13 $list = $doc->getElementsByTagNameNS(null, 'a'); 14 var_dump($list->length); 17 $list = $elem->getElementsByTagNameNS('', 'a'); 18 var_dump($list->length); 19 $list = $elem->getElementsByTagNameNS(null, 'a'); 20 var_dump($list->length);
|
/PHP-8.3/ext/phar/tests/zip/ |
H A D | bug48791.phpt | 12 …list-style-name="L1"/><style:style style:name="T1" style:family="text"><style:text-properties styl…
|
/PHP-8.3/ext/spl/tests/ |
H A D | bug67538.phpt | 5 $list = new SplDoublyLinkedList(); 6 $list->push('a'); 7 $list->push('b'); 9 $list->rewind(); 10 $list->offsetUnset(0); 11 $list->push('b'); 12 $list->offsetUnset(0); 13 $list->next();
|
H A D | SplDoublyLinkedList_lifoMode.phpt | 7 $list = new SplDoublyLinkedList(); 9 $list->push('o'); 10 $list->push('o'); 11 $list->push('f'); 13 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO); 15 $list->rewind(); 17 while ($tmp = $list->current()) { 19 $list->next();
|
H A D | SplDoublyLinkedList_consistent_iterator_mode.phpt | 6 $list = new SplDoublyLinkedList(); 7 $list->push(1); 8 $list->push(2); 9 $list->push(3); 16 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_FIFO); 17 foreach ($list as $item) { 18 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO); 24 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO); 25 foreach ($list as $item) { 26 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_FIFO);
|
H A D | SplDoublylinkedlist_offsetunset_first002.phpt | 7 $list = new SplDoublyLinkedList(); 8 $list->push('oh'); 9 $list->push('hai'); 10 $list->push('thar'); 11 echo $list->bottom() . "\n"; 12 $list->offsetUnset(0); 13 echo $list->bottom() . "\n";
|
H A D | gh16464.phpt | 2 GH-16464: Use-after-free in SplDoublyLinkedList::offsetSet() when modifying list in destructor of o… 10 global $list; 11 var_dump($list->pop()); 15 $list = new SplDoublyLinkedList; 16 $list->add(0, new C); 17 $list[0] = 42; 18 var_dump($list);
|
H A D | gh16589.phpt | 10 global $list; 11 $list->pop(); 16 $list = new SplDoublyLinkedList; 17 $list->add(0, new C); 18 $list->add(1, 1); 19 var_dump($list->serialize());
|
H A D | SplDoublylinkedlist_offsetunset_first.phpt | 7 $list = new SplDoublyLinkedList(); 8 $list->push('oh'); 9 $list->push('hai'); 10 $list->push('thar'); 11 $list->offsetUnset(0); 12 var_dump($list);
|
H A D | SplDoublylinkedlist_offsetunset_last.phpt | 7 $list = new SplDoublyLinkedList(); 8 $list->push('oh'); 9 $list->push('hai'); 10 $list->push('thar'); 11 $list->offsetUnset(2); 12 var_dump($list);
|
H A D | SplDoublyLinkedList_offsetExists_success.phpt | 7 $list = new SplDoublyLinkedList(); 9 // Push two values onto the list 10 $list->push('abc'); 11 $list->push('def'); 14 if($list->offsetExists(0) === true) { 19 if($list->offsetExists(1) === true) { 24 if($list->offsetExists(2) === false) {
|
H A D | SplDoublyLinkedList_getIteratorMode.phpt | 7 $list = new SplDoublyLinkedList(); 8 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_FIFO | SplDoublyLinkedList::IT_MODE_KEEP); 9 echo $list->getIteratorMode(), "\n"; 10 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO); 11 echo $list->getIteratorMode(), "\n";
|
/PHP-8.3/Zend/tests/ |
H A D | list_self_assign.phpt | 2 Test variable occurring on both LHS and RHS of list() 7 list($a, $b, $c) = $a; 11 list($a, $b, $c) = $b; 15 list($a, $b, $c) = $c; 19 list(list($a, $b), $c) = $a; 23 list(list($a, $b), $c) = $b; 27 list($a, list($b, $c)) = $b; 31 list($a, list($b, $c)) = $c;
|
H A D | list_mixed_nested_keyed_unkeyed.phpt | 2 list() with nested unkeyed and keyed list() 11 list(list("x" => $x1, "y" => $y1), list("x" => $x2, "y" => $y2)) = $points; 21 list("x" => list($x1, $x2), "y" => list($y1, $y2)) = $invertedPoints;
|
H A D | foreach_list_001.phpt | 2 foreach with list syntax 6 foreach(array(array(1,2), array(3,4)) as list($a, $b)) { 15 foreach ($array as list($a, $b)) { 25 foreach ($multi as list(list($a, $b), list($c, $d))) { 29 foreach ($multi as $key => list(list($a, $b), list($c, $d))) {
|
H A D | list_003.phpt | 2 list() with non-array 6 list($a) = NULL; 8 list($b) = 1; 10 list($c) = 1.; 12 list($d) = 'foo'; 14 list($e) = print '';
|
H A D | list_keyed_evaluation_order_2.phpt | 2 list() with keys, evaluation order #2 8 list($a, $b) = ['a', 'b']; 12 list(0 => $a, 1 => $b) = ['a', 'b']; 16 list(1 => $b, 0 => $a) = ['a', 'b']; 21 list($arr[], $arr[]) = ['a', 'b']; 26 list(0 => $arr[], 1 => $arr[]) = ['a', 'b']; 31 list(1 => $arr[], 0 => $arr[]) = ['b', 'a']; 36 list(list(1 => $arr[], 0 => $arr[])) = [['b', 'a']]; 41 list('key1' => $arr[], 'key2' => $arr[]) = ['key2' => 'b', 'key1' => 'a']; 47 list($a => $a) = ['foo', 'bar']; [all …]
|
H A D | foreach_list_003.phpt | 2 foreach with list key 8 foreach($array as list($key) => list(list(), $a)) { 13 Fatal error: Cannot use list as key element in %sforeach_list_003.php on line %d
|
H A D | list_006.phpt | 2 Testing nested list() with empty array 6 list($a, list($b, list(list($d)))) = array();
|
H A D | list_keyed.phpt | 2 list() with keys 11 list("good" => $good_antonym, "happy" => $happy_antonym) = $antonyms; 22 list(1 => $two_1, 2 => $two_2, 3 => $two_3) = $powersOfTwo; 32 list(7 => $seven, "elePHPant" => $elePHPant) = $contrivedMixedKeyTypesExample; 43 list( 44 "antonyms" => list("good" => $good_antonym, "happy" => $happy_antonym), 45 "powersOfTwo" => list(1 => $two_1, 2 => $two_2, 3 => $two_3), 46 "contrivedMixedKeyTypesExample" => list(7 => $seven, "elePHPant" => $elePHPant)
|
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_auto_possess.c | 326 uint32_t *list) in get_chr_property_list() argument 341 list[0] = c; in get_chr_property_list() 342 list[1] = FALSE; in get_chr_property_list() 375 list[0] = *code; in get_chr_property_list() 379 c = list[0]; in get_chr_property_list() 407 list[2] = chr; in get_chr_property_list() 415 list[2] = chr; in get_chr_property_list() 490 list[1] = TRUE; in get_chr_property_list() 540 uint32_t list[8]; in compare_opcodes() local 722 list_ptr = list; in compare_opcodes() [all …]
|
/PHP-8.3/ext/spl/ |
H A D | spl_functions.c | 25 void spl_add_class_name(zval *list, zend_class_entry *pce, int allow, int ce_flags) in spl_add_class_name() argument 30 if ((tmp = zend_hash_find(Z_ARRVAL_P(list), pce->name)) == NULL) { in spl_add_class_name() 33 zend_hash_add(Z_ARRVAL_P(list), pce->name, &t); in spl_add_class_name() 40 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_interfaces() argument 45 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags); in spl_add_interfaces() 52 void spl_add_traits(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_traits() argument 60 spl_add_class_name(list, trait, allow, ce_flags); in spl_add_traits() 67 void spl_add_classes(zend_class_entry *pce, zval *list, bool sub, int allow, int ce_flags) in spl_add_classes() argument 70 spl_add_class_name(list, pce, allow, ce_flags); in spl_add_classes() 72 spl_add_interfaces(list, pce, allow, ce_flags); in spl_add_classes() [all …]
|
/PHP-8.3/tests/lang/ |
H A D | engine_assignExecutionOrder_002.phpt | 8 list($a,,$b) = $f; 33 list($e[$f++],$e[$f++]) = $g[2]; 45 // a list of lists 46 list(list($j[$h++],$j[$h++]),$j[$h++]) = $i[3]; 53 list(list($l,$m),$n) = $k; 58 list($o,$p) = 20; 62 // list of lists with blanks and nulls expect 10 20 40 50 60 70 80 68 list(list(list($r,$s,,$t),list($u,$v),,$w),,$x) = $q4; 73 list($y,$z) = array(); 77 list($aa,$bb) = array(10); [all …]
|