diff options
author | Rasmus Lerdorf <rasmus@php.net> | 1999-11-10 18:57:19 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 1999-11-10 18:57:19 +0000 |
commit | 2de9baf655530af3fe25753af2b817d42f835cb0 (patch) | |
tree | 38054eb80e7cd1ca164f16b8ae473c2489eaa5fe | |
parent | 6e4114daf0c92cc0245fdcd4a35f9f2e6032b9fc (diff) | |
download | php-git-2de9baf655530af3fe25753af2b817d42f835cb0.tar.gz |
This arg is optional
-rw-r--r-- | ext/gd/gd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 91cfc1f505..b2b7a8bcf9 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -412,7 +412,7 @@ void php3_imagecreatefrompng (INTERNAL_FUNCTION_PARAMETERS) { } /* }}} */ -/* {{{ proto int imagepng(int im, string filename) +/* {{{ proto int imagepng(int im [, string filename]) Output image to browser or file */ void php3_imagepng (INTERNAL_FUNCTION_PARAMETERS) { pval *imgind, *file; @@ -524,7 +524,7 @@ PHP_FUNCTION(imagecreatefromgif ) } /* }}} */ -/* {{{ proto int imagegif(int im, string filename) +/* {{{ proto int imagegif(int im [, string filename]) Output image to browser or file */ PHP_FUNCTION(imagegif ) { |