Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/PHP-5.5/ext/phar/tests/zip/
H A Dbug48791.phpt14list-style-name="L1"/><style:style style:name="T1" style:family="text"><style:text-properties styl…
/PHP-5.5/ext/spl/tests/
H A Dbug67538.phpt5 $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 DSplDoublyLinkedList_lifoMode.phpt7 $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 DSplDoublylinkedlist_offsetunset_first002.phpt7 $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 DSplDoublyLinkedList_offsetExists_success.phpt7 $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 DSplDoublylinkedlist_offsetunset_first.phpt7 $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 DSplDoublylinkedlist_offsetunset_last.phpt7 $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 DSplDoublyLinkedList_getIteratorMode.phpt7 $list = new SplDoublyLinkedList();
8 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_FIFO | SplDoublyLinkedList::IT_MODE_KEEP);
9 echo $list->getIteratorMode();
H A DSplDoublyLinkedList_bottom_pass_float.phpt8 $list = new SplDoublyLinkedList();
9 $list->push("top");
10 $list->bottom(3.14159);
/PHP-5.5/Zend/tests/
H A Dforeach_list_001.phpt2 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 Dlist_003.phpt2 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 Dforeach_list_003.phpt2 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 Dlist_006.phpt2 Testing nested list() with empty array
6 list($a, list($b, list(list($d)))) = array();
H A Dlist_005.phpt2 Testing list() with several variables
8 list($a, $b, $c) = $a;
16 list($a, $b, $c) = $a;
24 list($a, $b, $c) = $a;
32 list($a, $b, $c) = $a;
H A Dlist_001.phpt2 "Nested" list()
6 list($a, list($b)) = array(new stdclass, array(new stdclass));
H A Dbug40899.phpt2 Bug #40899 (memory leak when nesting list())
5 list(list($a,$b),$c)=array(array('a','b'),'c');
H A Dforeach_list_004.phpt2 foreach with empty list
8 foreach($array as $key => list()) {
13 Fatal error: Cannot use empty list in %sforeach_list_004.php on line %d
H A Dbug60169.phpt2 Bug #60169 (Conjunction of ternary and list crashes PHP)
7 list($a,$b) = is_array($arr)? $arr : $arr;
8 list($c,$d) = is_array($arr)?: NULL;
H A Dlist_002.phpt2 Testing full-reference on list()
11 list($a, list($b)) = array($a, array($b));
/PHP-5.5/tests/lang/
H A Dengine_assignExecutionOrder_002.phpt8 list($a,,$b) = $f;
29 list($e[$f++],$e[$f++]) = $g[$f];
41 // a list of lists
42 list(list($j[$h++],$j[$h++]),$j[$h++]) = $i[$h];
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 D031.phpt11 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-5.5/ext/spl/
H A Dspl_functions.c80 void spl_add_class_name(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) in spl_add_class_name() argument
86 if (zend_hash_find(Z_ARRVAL_P(list), pce->name, len+1, (void*)&tmp) == FAILURE) { in spl_add_class_name()
89 zend_hash_add(Z_ARRVAL_P(list), pce->name, len+1, &tmp, sizeof(zval *), NULL); in spl_add_class_name()
96 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) in spl_add_interfaces() argument
101 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags TSRMLS_CC); in spl_add_interfaces()
107 void spl_add_traits(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) in spl_add_traits() argument
112 spl_add_class_name(list, pce->traits[num_traits], allow, ce_flags TSRMLS_CC); in spl_add_traits()
119 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags TSRMLS_DC) in spl_add_classes() argument
124 spl_add_class_name(list, pce, allow, ce_flags TSRMLS_CC); in spl_add_classes()
126 spl_add_interfaces(list, pce, allow, ce_flags TSRMLS_CC); in spl_add_classes()
[all …]
/PHP-5.5/scripts/dev/generate-phpt/src/testcase/
H A DgtErrorTestCaseFunction.php46 $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 DgtErrorTestCaseMethod.php49 $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." ) );";
/PHP-5.5/ext/standard/tests/file/
H A Dfputcsv.phpt6 $list = array (
33 foreach ($list as $v) {
43 echo '$list = ';var_export($res);echo ";\n";
53 echo '$list = ';var_export($res);echo ";\n";
61 $list = array (
83 $list = array (

Completed in 63 milliseconds

12345678910>>...14