Home
last modified time | relevance | path

Searched refs:add (Results 26 – 50 of 360) sorted by relevance

12345678910>>...15

/PHP-8.3/ext/com_dotnet/tests/
H A Dbug34272.phpt11 $dict->add('foo', array());
13 $dict->add('bar', array(23));
/PHP-8.3/ext/ffi/tests/
H A Dlist.phpt43 function add(int $data) {
85 $dlist->add(1);
86 $dlist->add(3);
87 $dlist->add(5);
/PHP-8.3/ext/spl/tests/
H A Diterator_003.phpt54 public function add(Student $student)
78 $students->add(new Student('01234123', 'Joe'));
79 $students->add(new Student('00000014', 'Bob'));
80 $students->add(new Student('00000014', 'Foo'));
H A Dbug34548.phpt8 public function add($dataArray)
23 $foo->add($data2);
/PHP-8.3/ext/simplexml/tests/
H A Dbug40451.phpt17 $add = $xml->addChild('Host');
18 $add->Host->addAttribute('enable', 'true');
/PHP-8.3/Zend/tests/generators/
H A Dbug71441.phpt7 $add = str_repeat("1 +", $num);
12 \$foo = \$a + $add \$a;
/PHP-8.3/ext/date/tests/
H A Dbug80664.phpt8 $dt->add(new DateInterval('PT1H'));
10 $dt->add(new DateInterval('PT1H'));
12 $dt->add(new DateInterval('PT1M'));
H A Drfc-datetime_and_daylight_saving_time-type2.phpt54 * Forward Transitions, add().
61 . $start->add($interval)->format($date_format) . "\n";
67 . $start->add($interval)->format($date_format) . "\n";
73 . $start->add($interval)->format($date_format) . "\n";
79 . $start->add($interval)->format($date_format) . "\n";
85 . $start->add($interval)->format($date_format) . "\n";
91 . $start->add($interval)->format($date_format) . "\n";
190 * Backward Transitions, add().
197 . $start->add($interval)->format($date_format) . "\n";
203 . $start->add($interval)->format($date_format) . "\n";
[all …]
H A Dbug54340.phpt2 Bug #54340 (DateTime::add() method bug)
12 $dt->add($interval);
H A Dbug75167.phpt2 Bug #75167 (DateTime::add does only care about backward DST transition, not forward)
12 $five_hours_later = (clone $date)->add($five_hours_interval);
H A Dbug55253.phpt2 Bug #55253 (DateTime::add() and sub() result -1 hour on objects with time zone type 2)
19 $date3->add($interval);
20 $date2->add($interval);
H A Dbug73460-001.phpt2 Bug #73460 (Datetime add not realising it already applied DST change)
10 $date->add(new DateInterval('PT15M'));
H A Dbug73460-002.phpt2 Bug #73460 (Datetime add not realising it already applied DST change)
27 $start->add(new \DateInterval('PT30M'));
/PHP-8.3/Zend/tests/
H A Darray_merge_recursive_next_key_overflow.phpt24 Cannot add element to the array as the next element is already occupied
25 Cannot add element to the array as the next element is already occupied
H A Darray_literal_next_element_error.phpt23 Cannot add element to the array as the next element is already occupied
24 Cannot add element to the array as the next element is already occupied
H A Dassign_ref_error_var_handling.phpt27 Cannot add element to the array as the next element is already occupied
29 Cannot add element to the array as the next element is already occupied
H A Dbug71841.phpt43 Cannot add element to the array as the next element is already occupied
44 Cannot add element to the array as the next element is already occupied
45 Cannot add element to the array as the next element is already occupied
H A Dbug70804.phpt2 Bug #70804 (Unary add on negative zero produces positive zero)
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_fetch_field_types.phpt70 MYSQLI_TYPE_LONG => 'MYSQLI_TYPE_LONG - TODO add testing',
90 MYSQLI_TYPE_STRING => 'MYSQLI_TYPE_STRING - TODO add testing',
93 MYSQLI_TYPE_NULL => 'MYSQLI_TYPE_NULL - TODO add testing',
94 MYSQLI_TYPE_NEWDATE => 'MYSQLI_TYPE_NEWDATE - TODO add testing',
95 MYSQLI_TYPE_INTERVAL => 'MYSQLI_TYPE_INTERVAL - TODO add testing',
96 MYSQLI_TYPE_GEOMETRY => 'MYSQLI_TYPE_GEOMETRY - TODO add testing',
/PHP-8.3/ext/imap/tests/
H A Dimap_bodystruct_basic.phpt14 echo "Create a new mailbox for test and add a multipart msgs\n";
59 Create a new mailbox for test and add a multipart msgs
60 Create a temporary mailbox and add 1 msgs
H A Dbug35669.phpt13 $body[] = $multipart; //add multipart stuff
17 $body[] = $textpart; //add body part
27 $body[] = $plain; //next add plain text part
H A Dbug80438.phpt14 // create a new mailbox and add 10 new messages to it
38 Create a temporary mailbox and add 10 msgs
/PHP-8.3/ext/xsl/
H A Dconfig.m49 AC_MSG_ERROR([XSL extension requires LIBXML extension, add --with-libxml])
13 AC_MSG_ERROR([XSL extension requires DOM extension, add --enable-dom])
/PHP-8.3/ext/soap/tests/bugs/
H A Dbug36908.phpt10 function add($publisher) {
21 …<ns1:add xmlns:ns1="urn:PublisherService" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/e…
23 </ns1:add>
/PHP-8.3/ext/standard/
H A Dformatted_print.c52 php_sprintf_appendchar(zend_string **buffer, size_t *pos, char add) in php_sprintf_appendchar() argument
58 PRINTF_DEBUG(("sprintf: appending '%c', pos=\n", add, *pos)); in php_sprintf_appendchar()
59 ZSTR_VAL(*buffer)[(*pos)++] = add; in php_sprintf_appendchar()
65 php_sprintf_appendchars(zend_string **buffer, size_t *pos, char *add, size_t len) in php_sprintf_appendchars() argument
76 PRINTF_DEBUG(("sprintf: appending \"%s\", pos=\n", add, *pos)); in php_sprintf_appendchars()
77 memcpy(ZSTR_VAL(*buffer) + (*pos), add, len); in php_sprintf_appendchars()
84 php_sprintf_appendstring(zend_string **buffer, size_t *pos, char *add, in php_sprintf_appendstring() argument
97 *buffer, *pos, ZSTR_LEN(*buffer), add, min_width, padding, alignment)); in php_sprintf_appendstring()
120 add++; in php_sprintf_appendstring()
128 PRINTF_DEBUG(("sprintf: appending \"%s\"\n", add)); in php_sprintf_appendstring()
[all …]

Completed in 38 milliseconds

12345678910>>...15