1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- redis.c.orig 2022-02-15 18:25:22 UTC
+++ redis.c
@@ -27,7 +27,11 @@
#include "redis_cluster.h"
#include "redis_commands.h"
#include "redis_sentinel.h"
+#if PHP_VERSION_ID <= 80300
#include <standard/php_random.h>
+#else
+#include <ext/random/php_random.h>
+#endif
#include <zend_exceptions.h>
#include <ext/standard/info.h>
#include <ext/hash/php_hash.h>
@@ -154,6 +158,9 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_pconnect, 0, 0, 1)
ZEND_ARG_INFO(0, host)
ZEND_ARG_INFO(0, port)
ZEND_ARG_INFO(0, timeout)
+ ZEND_ARG_INFO(0, persistent_id)
+ ZEND_ARG_INFO(0, retry_interval)
+ ZEND_ARG_INFO(0, read_timeout)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_mget, 0, 0, 1)
|