summaryrefslogtreecommitdiff
path: root/ext/standard/image.c
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2000-05-17 19:40:10 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2000-05-17 19:40:10 +0000
commite5a2f0f95cd2c95663e059bf12f64f55f905b83c (patch)
treed80fa178afb27f44d83fd527baafb3533f06d295 /ext/standard/image.c
parent1e632ffdee91ed1288f49d14e9b313c220e16dcc (diff)
downloadphp-git-e5a2f0f95cd2c95663e059bf12f64f55f905b83c.tar.gz
proto-takeover from php3
Diffstat (limited to 'ext/standard/image.c')
-rw-r--r--ext/standard/image.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c
index 88de240736..5a3c28eda5 100644
--- a/ext/standard/image.c
+++ b/ext/standard/image.c
@@ -294,6 +294,8 @@ static struct gfxinfo *php_handle_jpeg(FILE *fp,pval *info)
}
/* main function */
+/* {{{ proto array getimagesize(string imagefile[, array info])
+ Get the size of an image as 4-element array */
PHP_FUNCTION(getimagesize)
{
pval **arg1,**info = 0;
@@ -386,3 +388,4 @@ PHP_FUNCTION(getimagesize)
efree(result);
}
}
+/* }}} */