We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1a42dc commit 508acf8Copy full SHA for 508acf8
2 files changed
php_compat.h
@@ -1,6 +1,6 @@
1
#pragma once
2
3
-#if PHP_VERSION_ID < 80200
+#if PHP_VERSION_ID < 80400
4
#define RETURN_THIS() ZVAL_COPY(return_value, getThis()); return
5
#endif
6
tests/url-no-fd.phpt
@@ -6,6 +6,7 @@ Constructor falls back to FILE* for stream wrappers that cannot be cast to a fil
/* A stream wrapper that delegates reads/seeks to a real file but never
7
* exposes a file descriptor (no stream_cast method). */
8
class NoFdWrapper {
9
+ public $context;
10
private $fp;
11
12
public function stream_open(string $path, string $mode,
0 commit comments