Searched refs:send (Results 1 – 25 of 104) sorted by relevance
12345
/php-src/Zend/tests/generators/ |
H A D | generator_send.phpt | 13 $gen->send("send bar"); 15 $gen->send("send foo"); 20 string(8) "send bar" 22 string(8) "send foo"
|
H A D | dangling_send_target.phpt | 2 Yield from does not leave a dangling send target 10 $gen->send(new stdClass); 17 $gen->send(new stdClass); 18 $gen->send(new stdClass);
|
H A D | send_after_close.phpt | 2 Calls to send() after close should do nothing 9 $gen->send('foo'); 10 $gen->send('bar');
|
H A D | send_returns_current.phpt | 2 $generator->send() returns the yielded value 14 var_dump($gen->send('foo')); 15 var_dump($gen->send('bar'));
|
H A D | yield_without_value.phpt | 14 $receiver->send(1); 16 $receiver->send(2); 18 $receiver->send(3);
|
H A D | yield_from_already_running.phpt | 10 ($gen = gen())->send($gen); 17 #1 %s(%d): Generator->send(Object(Generator))
|
H A D | ignored_send_leak.phpt | 11 $gen->send(NULL);
|
H A D | yield_during_function_call.phpt | 11 $gen->send(10);
|
/php-src/Zend/tests/ |
H A D | bug69989_3.phpt | 20 $gen->send($gen); 30 $gen->send($gen); 38 $gen2->send([1, 2, 3]); 39 $gen->send($gen2);
|
H A D | bug76946.phpt | 19 $gen->send($gen); 22 $gen2->send($gen2);
|
H A D | bug69989_2.phpt | 13 $gen->send($gen); 37 $gen->send($gen);
|
H A D | bug69989_1.phpt | 10 $gen->send($gen);
|
/php-src/Zend/tests/generators/errors/ |
H A D | resume_running_generator_error_003.phpt | 7 $g->send($y); 11 $gen->send($gen); 20 #0 %sresume_running_generator_error_003.php(4): Generator->send(NULL) 22 #2 %sresume_running_generator_error_003.php(8): Generator->send(Object(Generator))
|
H A D | resume_running_generator_error_002.phpt | 7 $g->send($g); 11 $gen->send($gen);
|
H A D | resume_running_generator_error.phpt | 17 $gen->send($gen); 28 #2 %s(%d): Generator->send(Object(Generator))
|
/php-src/ext/standard/tests/mail/ |
H A D | bug69874.phpt | 2 Bug #69874: Null addtional_headers does not send mail 8 echo "*** Testing mail() : send email without additional headers ***\n"; 24 *** Testing mail() : send email without additional headers ***
|
H A D | bug69874_2.phpt | 2 Bug #69874: Null addtional_headers does not send mail 8 echo "*** Testing mail() : send email without additional headers ***\n"; 24 *** Testing mail() : send email without additional headers ***
|
H A D | mail_util.inc | 40 public function send(string $tag, string $command): void 122 $self->mailConnecter->send(self::LOGIN, 'LOGIN '.$user.' '.self::PASSWORD); 131 $this->mailConnecter->send(self::LOGOUT, 'LOGOUT'); 139 $this->mailConnecter->send(self::SELECT_MAILBOX, 'SELECT "INBOX"'); 144 $this->mailConnecter->send(self::SEARCH, "UID SEARCH SUBJECT \"{$subject}\""); 160 $this->mailConnecter->send(self::FETCH_HEADERS, "UID FETCH {$uid} (BODY[HEADER])"); 184 $this->mailConnecter->send(self::FETCH_BODY, "UID FETCH {$uid} (BODY[TEXT])"); 197 … fn($uid) => $this->mailConnecter->send(self::DELETE, "UID STORE {$uid} +FLAGS (\\Deleted)"), 200 $this->mailConnecter->send(self::EXPUNGE, 'EXPUNGE');
|
H A D | bug66535.phpt | 8 echo "*** Testing mail() : send email without additional headers ***\n"; 24 *** Testing mail() : send email without additional headers ***
|
/php-src/sapi/cli/tests/ |
H A D | bug64529.phpt | 33 send "echo 'hello world';\n" 34 send "\04" 51 send "<?php echo 'hello world';\n" 52 send "\04"
|
/php-src/ext/zend_test/tests/ |
H A D | observer_generator_04.phpt | 26 $generator->send('Boop'); 109 <!-- init Generator::send() --> 110 <Generator::send> 113 </Generator::send:NULL>
|
/php-src/ext/sockets/tests/ |
H A D | socket_abstract_path_sendmsg.phpt | 17 echo "creating send socket\n"; 36 creating send socket
|
/php-src/ext/zlib/tests/ |
H A D | deflate_add_basic.phpt | 54 $compressed .= $stream->send($c); 56 $compressed .= $stream->send(null);
|
H A D | inflate_add_basic.phpt | 59 $inflated .= $stream->send($compressed[$i]); 61 $inflated .= $stream->send(null);
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 198 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 218 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 224 if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile() 232 if ((ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile()
|
Completed in 23 milliseconds
12345