diff options
| author | Stig Bakken <ssb@php.net> | 2001-10-10 10:32:16 +0000 |
|---|---|---|
| committer | Stig Bakken <ssb@php.net> | 2001-10-10 10:32:16 +0000 |
| commit | f0c30a06621baf529ade6e62be6a51df669d4a60 (patch) | |
| tree | 72b80018038159da7c26f8b48eca8192ff6f0ce4 | |
| parent | f3d2d4c630984651d8aeaee721f814dc2ce14489 (diff) | |
| download | php-git-f0c30a06621baf529ade6e62be6a51df669d4a60.tar.gz | |
* added function entries for version_{lt,le,gt,ge,eq}
| -rw-r--r-- | ext/standard/basic_functions.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index e6e136d3ea..167ca2cc93 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -792,6 +792,11 @@ function_entry basic_functions[] = { /* functions from versioning.c */ PHP_FE(version_compare, NULL) + PHP_FE(version_lt, NULL) + PHP_FE(version_le, NULL) + PHP_FE(version_gt, NULL) + PHP_FE(version_ge, NULL) + PHP_FE(version_eq, NULL) {NULL, NULL, NULL} }; |
