summaryrefslogtreecommitdiff
path: root/ext/standard/streamsfuncs.c
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2003-04-19 02:47:16 +0000
committerSara Golemon <pollita@php.net>2003-04-19 02:47:16 +0000
commit6dde464ce77d10b94e60e9889d6ebd8b27b2b27c (patch)
tree39f912ad97b0581dacb5c543f54dd719f91a22a7 /ext/standard/streamsfuncs.c
parent1b3467e72d45040528454a50d573708eba384905 (diff)
downloadphp-git-6dde464ce77d10b94e60e9889d6ebd8b27b2b27c.tar.gz
Let stream_copy_to_stream() accept either stream resource or filename/url string. If filename, open the file, do the copy, then close it.
Diffstat (limited to 'ext/standard/streamsfuncs.c')
-rw-r--r--ext/standard/streamsfuncs.c34
1 files changed, 28 insertions, 6 deletions
diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c
index ee57d0da86..92625f2680 100644
--- a/ext/standard/streamsfuncs.c
+++ b/ext/standard/streamsfuncs.c
@@ -267,18 +267,40 @@ PHP_FUNCTION(stream_socket_get_name)
Reads up to maxlen bytes from source stream and writes them to dest stream. */
PHP_FUNCTION(stream_copy_to_stream)
{
- php_stream *src, *dest;
+ php_stream *src = NULL, *dest = NULL;
zval *zsrc, *zdest;
- long maxlen = PHP_STREAM_COPY_ALL;
+ long maxlen = PHP_STREAM_COPY_ALL, copied;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rr|l", &zsrc, &zdest, &maxlen) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz|l", &zsrc, &zdest, &maxlen) == FAILURE) {
RETURN_FALSE;
}
- php_stream_from_zval(src, &zsrc);
- php_stream_from_zval(dest, &zdest);
+ php_stream_get_from_zval(src, &zsrc, "rb", USE_PATH | ENFORCE_SAFE_MODE | REPORT_ERRORS, NULL, NULL);
+ if (!src) {
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to access source stream");
+ RETURN_FALSE;
+ }
+
+ php_stream_get_from_zval(dest, &zdest, "wb", ENFORCE_SAFE_MODE | REPORT_ERRORS, NULL, NULL);
+ if (!dest) {
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to access destination stream");
+ if (Z_TYPE_P(zsrc) == IS_STRING) {
+ php_stream_close(src);
+ }
+ RETURN_FALSE;
+ }
+
+ copied = php_stream_copy_to_stream(src, dest, maxlen);
+
+ if (Z_TYPE_P(zsrc) == IS_STRING) {
+ php_stream_close(src);
+ }
+
+ if (Z_TYPE_P(zdest) == IS_STRING) {
+ php_stream_close(dest);
+ }
- RETURN_LONG(php_stream_copy_to_stream(src, dest, maxlen));
+ RETURN_LONG(copied);
}
/* }}} */