diff options
author | Dmitry Stogov <dmitry@zend.com> | 2021-02-26 02:28:46 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2021-02-26 02:28:46 +0300 |
commit | 13e4ce386bb7257dbbe3167b070382ea959ec763 (patch) | |
tree | bf73295d32470a3e85d84dc244655f37c550c386 /main/php_streams.h | |
parent | 5e8ae15c3d59f5ee4ca9f51b4ee712e2ada67864 (diff) | |
download | php-git-13e4ce386bb7257dbbe3167b070382ea959ec763.tar.gz |
Improve SPL directory and stat() cache using zend_srting* instead of char*
Diffstat (limited to 'main/php_streams.h')
-rw-r--r-- | main/php_streams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 60be0a79eb..f7196b8437 100644 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -391,7 +391,7 @@ END_EXTERN_C() /* Flags for url_stat method in wrapper ops */ #define PHP_STREAM_URL_STAT_LINK 1 #define PHP_STREAM_URL_STAT_QUIET 2 -#define PHP_STREAM_URL_STAT_NOCACHE 4 +#define PHP_STREAM_URL_STAT_IGNORE_OPEN_BASEDIR 4 /* change the blocking mode of stream: value == 1 => blocking, value == 0 => non-blocking. */ #define PHP_STREAM_OPTION_BLOCKING 1 |