diff options
author | Egon Schmid <eschmid@php.net> | 2000-06-25 17:55:13 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-06-25 17:55:13 +0000 |
commit | 2deed22e5cfa848eb7abae193829a04cbeef8b50 (patch) | |
tree | 5b1ca678f6e9f2b6e6fc6d54c48cbd777d222a70 | |
parent | 10e03036207c21c277fc9c09cf167103bd8d9afd (diff) | |
download | php-git-2deed22e5cfa848eb7abae193829a04cbeef8b50.tar.gz |
Now its a todo.
-rw-r--r-- | ext/gd/gd.c | 2 | ||||
-rw-r--r-- | ext/standard/datetime.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 5d563ada7c..d4830583dd 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -516,7 +516,7 @@ PHP_FUNCTION(imagecreatefromxbm) } /* }}} */ -/* {{{ droto int imagecreatefromxpm(string filename) +/* {{{ todo int imagecreatefromxpm(string filename) Create a new image from XPM file or URL */ PHP_FUNCTION(imagecreatefromxpm) { diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index 1b837f79e5..e1344a72e2 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -180,7 +180,7 @@ void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm) RETURN_LONG(seconds); } -/* {{{ proto int mktime(int hour, int min, int sec, int mon, int mday, int year) +/* {{{ proto int mktime(int hour, int min, int sec, int mon, int day, int year) Get UNIX timestamp for a date */ PHP_FUNCTION(mktime) { @@ -188,7 +188,7 @@ PHP_FUNCTION(mktime) } /* }}} */ -/* {{{ proto int gmmktime(int hour, int min, int sec, int mon, int mday, int year) +/* {{{ proto int gmmktime(int hour, int min, int sec, int mon, int day, int year) Get UNIX timestamp for a GMT date */ PHP_FUNCTION(gmmktime) { |