Merge branch 'PHP-8.3' into PHP-8.4

This commit is contained in:
Jakub Zelenka 2024-11-24 23:49:55 +01:00
commit a5db8b3fe5
No known key found for this signature in database
GPG key ID: 1C0779DC5C0A9DE4

View file

@ -552,8 +552,8 @@ class my_mysqli_fake_server_conn
public function read($bytes_len = 1024)
{
// wait 10ms to fill the buffer
usleep(10000);
// wait 20ms to fill the buffer
usleep(20000);
$data = fread($this->conn, $bytes_len);
if ($data) {
fprintf(STDERR, "[*] Received: %s\n", bin2hex($data));