Home
last modified time | relevance | path

Searched refs:append (Results 1 – 25 of 88) sorted by relevance

1234

/PHP-7.4/tests/output/
H A Dob_start_basic_004.phpt37 ----( chunk_size: -1, output append size: 1 )----
40 ----( chunk_size: 0, output append size: 1 )----
43 ----( chunk_size: 1, output append size: 1 )----
54 ----( chunk_size: 2, output append size: 1 )----
61 ----( chunk_size: 3, output append size: 1 )----
66 ----( chunk_size: 4, output append size: 1 )----
71 ----( chunk_size: 5, output append size: 1 )----
75 ----( chunk_size: 6, output append size: 1 )----
79 ----( chunk_size: 7, output append size: 1 )----
83 ----( chunk_size: 8, output append size: 1 )----
[all …]
/PHP-7.4/ext/spl/tests/
H A Diterator_031.phpt2 SPL: AppendIterator::append() rewinds when necessary
41 function append(Iterator $what)
44 parent::append($what);
57 $ap->append($it);
75 $ap->append($it);
76 $ap->append($it);
77 $ap->append($it);
92 MyAppendIterator::append
95 MyAppendIterator::append
97 MyAppendIterator::append
[all …]
H A Dbug75155.phpt2 Bug #75155: AppendIterator::append() is broken when appending another AppendIterator
10 $iterator->append($array_a);
13 $iterator2->append($iterator);
14 $iterator2->append($array_b);
H A Darray_013.phpt2 SPL: ArrayIterator::append
23 $it->append('three');
24 $it->append('four');
52 $it->append('three');
53 $it->append('four');
79 Fatal error: Uncaught Error: Cannot append properties to objects, use ArrayIterator::offsetSet() in…
81 #0 %s(%d): ArrayIterator->append('three')
H A Dbug75173.phpt2 Bug #75173 incorrect behavior of AppendIterator::append in foreach loop
7 $it->append(new ArrayIterator(['foo']));
13 $it->append(new ArrayIterator(['bar']));
H A Dbug70730.phpt24 $a->append('item1');
25 $a->append('item2');
26 $a->append('item3');
H A Diterator_042.phpt17 $it->append(array());
21 $it->append(new ArrayIterator(array(1)));
22 $it->append(new ArrayIterator(array(21, 22)));
26 $it->append(new ArrayIterator(array(31, 32, 33)));
44 Error Argument 1 passed to AppendIterator::append() must implement interface Iterator, array given …
H A Dbug45826.phpt7 $o->append($y);
8 $o->append($y);
9 $o->append($o);
45 $o->append($y);
46 $o->append($y);
47 $o->append($o);
H A Dbug73471.phpt9 $iterator->append($events);
11 $iterator->append($events2);
H A Dspl_006.phpt7 $it->append(new ArrayIterator(array(1,2)));
8 $it->append(new ArrayIterator(array(2,3)));
H A Dbug74669.phpt17 public function append($element)
19 $this->container->append($element);
57 $container->append('test1');
58 $container->append('test2');
H A Dbug34548.phpt2 Bug #34548 (Method append() in class extended from ArrayObject crashes PHP)
10 foreach($dataArray as $value) $this->append($value);
H A Diterator_013.phpt17 $it->append(new ArrayIterator(array(0 => 'A', 1 => 'B')));
33 $it->append(new ArrayIterator(array(2 => 'C', 3 => 'D')));
H A Dbug32394.phpt7 $object->append(1);
/PHP-7.4/ext/standard/tests/array/
H A Dbug40191.phpt7 $arrObj->append('foo');
8 $arrObj->append('bar');
9 $arrObj->append('foo');
/PHP-7.4/ext/standard/tests/filters/
H A Dbug73586.phpt19 stream_filter_register("append", "append_filter");
21 stream_filter_append($fin, 'append', STREAM_FILTER_READ);
40 stream_filter_register("append", "append_filter");
42 stream_filter_append($fin, 'append', STREAM_FILTER_READ);
H A Dfilter_errors_user.phpt51 echo "test append / read / remove\n";
62 echo "test append all / read / remove all\n";
76 echo "test append all / read / close\n";
132 test append / read / remove
154 test append all / read / remove all
172 test append all / read / close
/PHP-7.4/ext/oci8/tests/
H A Dcoll_018.phpt23 var_dump($coll1->append(1));
24 var_dump($coll1->append(2));
25 var_dump($coll1->append(3));
26 var_dump($coll1->append(4));
H A Dcoll_019.phpt25 var_dump($coll1->append('a long string')); // invalid type for append
66 var_dump($coll1->append(1)); // invalid date format
78 Notice: OCI-Collection::append(): Unknown or unsupported type of element: 113 in %s on line %d
101 Warning: OCI-Collection::append(): OCI-01840: input value not long enough for date format in %s on …
H A Dcoll_011.phpt29 var_dump($coll1->append("string"));
30 var_dump($coll1->append("string"));
H A Dcoll_009.phpt29 var_dump($coll1->append("2005-07-28"));
41 Warning: OCI-Collection::append(): OCI-01861: literal does not match format string in %s on line %d
/PHP-7.4/ext/dom/tests/
H A DDOMCharacterData_appendData_basic.phpt21 echo "CDATA Length (one append): " . $cdatanode->length . "\n";
32 CDATA Length (one append): 4
H A DDOMComment_appendData_basic_Sullivan.phpt21 echo "Comment Length (one append): " . $commentnode->length . "\n";
32 Comment Length (one append): 4
H A DDOMText_appendData_basic.phpt21 echo "Text Length (one append): " . $textnode->length . "\n";
33 Text Length (one append): 4
/PHP-7.4/ext/pdo/tests/
H A Dpdo_test.inc6 $append = false;
8 if ($append) {
11 $append = true;

Completed in 38 milliseconds

1234