blob: 806baf8cee4abd8a52f0b56e14550965aad8425b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Calls to send() after close should do nothing
--FILE--
<?php
function gen() { var_dump(yield); }
$gen = gen();
$gen->send('foo');
$gen->send('bar');
?>
--EXPECT--
string(3) "foo"
|