1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Improve stability of test gh13860.phpt
This commit is contained in:
Niels Dossche
2024-04-07 22:50:09 +02:00

View File

@@ -21,6 +21,7 @@ $serverCode = <<<'CODE'
fwrite($client, "xx");
phpt_wait();
fclose($client);
phpt_notify();
}
CODE;
@@ -38,6 +39,7 @@ $clientCode = <<<'CODE'
while (!($in = fread($fp, 2))) {
usleep(1000);
}
phpt_wait();
var_dump(feof($fp));
fclose($fp);
CODE;