/PHP-7.0/ext/phar/tests/zip/ |
H A D | bug48791.phpt | 14 …list-style-name="L1"/><style:style style:name="T1" style:family="text"><style:text-properties styl…
|
/PHP-7.0/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_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 | 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_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 | bug67582.phpt | 13 $list = new MyObjectStorage(); 14 $list->attach(new TestObject()); 16 foreach($list as $x) var_dump($list->offsetExists($x)); 18 $list2 = clone $list;
|
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();
|
/PHP-7.0/Zend/tests/ |
H A D | list_self_assign.phpt | 2 Test variable occuring 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 | 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_006.phpt | 2 Testing nested list() with empty array 6 list($a, list($b, list(list($d)))) = array();
|
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_005.phpt | 2 Testing list() with several variables 8 list($a, $b, $c) = $str; 16 list($a, $b, $c) = $int; 24 list($a, $b, $c) = $obj; 32 list($a, $b, $c) = $arr;
|
H A D | list_empty_error.phpt | 2 Empty list() assignments are not allowed 6 list(,,,,,,,,,,) = []; 10 Fatal error: Cannot use empty list in %s on line %d
|
H A D | list_001.phpt | 2 "Nested" list() 6 list($a, list($b)) = array(new stdclass, array(new stdclass));
|
H A D | bug40899.phpt | 2 Bug #40899 (memory leak when nesting list()) 5 list(list($a,$b),$c)=array(array('a','b'),'c');
|
H A D | bug73663.phpt | 2 Bug #73663 ("Invalid opcode 65/16/8" occurs with a variable created with list()) 15 var_dump(list($val) = $array); // NG: Invalid opcode 17 change(list($val) = $array); 22 $func(list($val) = $array);
|
/PHP-7.0/ext/spl/ |
H A D | spl_functions.c | 80 void spl_add_class_name(zval *list, zend_class_entry *pce, int allow, int ce_flags) in spl_add_class_name() argument 85 if ((tmp = zend_hash_find(Z_ARRVAL_P(list), pce->name)) == NULL) { in spl_add_class_name() 88 zend_hash_add(Z_ARRVAL_P(list), pce->name, &t); in spl_add_class_name() 95 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_interfaces() argument 100 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags); in spl_add_interfaces() 106 void spl_add_traits(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_traits() argument 111 spl_add_class_name(list, pce->traits[num_traits], allow, ce_flags); in spl_add_traits() 118 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags) in spl_add_classes() argument 123 spl_add_class_name(list, pce, allow, ce_flags); in spl_add_classes() 125 spl_add_interfaces(list, pce, allow, ce_flags); in spl_add_classes() [all …]
|
/PHP-7.0/tests/lang/ |
H A D | engine_assignExecutionOrder_002.phpt | 8 list($a,,$b) = $f; 29 list($e[$f++],$e[$f++]) = $g[2]; 41 // a list of lists 42 list(list($j[$h++],$j[$h++]),$j[$h++]) = $i[3]; 49 list(list($l,$m),$n) = $k; 54 list($o,$p) = 20; 58 // list of lists with blanks and nulls expect 10 20 40 50 60 70 80 64 list(list(list($r,$s,,$t),list($u,$v),,$w),,$x) = $q4; 69 list($y,$z) = array(); 73 list($aa,$bb) = array(10); [all …]
|
H A D | 031.phpt | 11 while(list(,$o) = each($arrayOuter)){ 13 while(list(,$i) = each($arrayInner)){ 22 while(list(,$o) = each($arrayOuter)){ 23 while(list(,$i) = each($arrayInner)){ 32 while(list(,$o) = each($arrayOuter)){ 34 while(list(,$i) = each($arrayInner)){ 43 while(list(,$o) = each($arrayOuter)){ 45 while(list(,$i) = each($placeholder)){
|
/PHP-7.0/ext/dom/tests/ |
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);
|
/PHP-7.0/scripts/dev/generate-phpt/src/testcase/ |
H A D | gtErrorTestCaseFunction.php | 46 $list = $this->subject->getExtraArgumentList(); 48 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 50 $list = $this->subject->getShortArgumentList(); 52 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
|
H A D | gtErrorTestCaseMethod.php | 49 $list = $this->subject->getExtraArgumentList(); 51 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 53 $list = $this->subject->getShortArgumentList(); 55 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
|