From: Marcus Boerger Date: Sat, 29 Oct 2005 15:09:12 +0000 (+0000) Subject: - Allow to specify ma memory usage for temp stream X-Git-Tag: RELEASE_2_0_1~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86cbff953878b3425703089c081951352b83a617;p=php - Allow to specify ma memory usage for temp stream --- diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c index 2dfbef6dca..d15ec90452 100644 --- a/ext/standard/php_fopen_wrapper.c +++ b/ext/standard/php_fopen_wrapper.c @@ -153,12 +153,23 @@ php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, ch int mode_rw = 0; php_stream * stream = NULL; char *p, *token, *pathdup; + long max_memory; if (!strncasecmp(path, "php://", 6)) path += 6; - if (!strcasecmp(path, "temp")) { - return php_stream_temp_create(0, PHP_STREAM_MAX_MEM); + if (!strncasecmp(path, "temp", 4)) { + path += 4; + max_memory = PHP_STREAM_MAX_MEM; + if (!strncasecmp(path, "/maxmemory:", 11)) { + path += 11; + sscanf(path, "%ld", &max_memory); + if (max_memory < 0) { + php_error_docref(NULL TSRMLS_CC, E_ERROR, "Max memory must be >= 0"); + return NULL; + } + } + return php_stream_temp_create(0, max_memory); } if (!strcasecmp(path, "memory")) { @@ -190,7 +201,7 @@ php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, ch pathdup = estrndup(path + 6, strlen(path + 6)); p = strstr(pathdup, "/resource="); if (!p) { - php_error_docref(NULL TSRMLS_CC, E_ERROR, "No URL resource specified."); + php_error_docref(NULL TSRMLS_CC, E_ERROR, "No URL resource specified"); efree(pathdup); return NULL; }