mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.3' into PHP-8.4
This commit is contained in:
commit
a5db8b3fe5
1 changed files with 2 additions and 2 deletions
|
@ -552,8 +552,8 @@ class my_mysqli_fake_server_conn
|
||||||
|
|
||||||
public function read($bytes_len = 1024)
|
public function read($bytes_len = 1024)
|
||||||
{
|
{
|
||||||
// wait 10ms to fill the buffer
|
// wait 20ms to fill the buffer
|
||||||
usleep(10000);
|
usleep(20000);
|
||||||
$data = fread($this->conn, $bytes_len);
|
$data = fread($this->conn, $bytes_len);
|
||||||
if ($data) {
|
if ($data) {
|
||||||
fprintf(STDERR, "[*] Received: %s\n", bin2hex($data));
|
fprintf(STDERR, "[*] Received: %s\n", bin2hex($data));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue