diff options
author | Zeev Suraski <zeev@php.net> | 2003-07-22 16:06:07 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2003-07-22 16:06:07 +0000 |
commit | cf90932a05b03354fdf6b844ff3a6902fc51a928 (patch) | |
tree | 4979bfe564435a2f5ac19e4c839ea58e8d11beed /Zend/zend_operators.h | |
parent | 5fcff2d872dfc59328e8855b5bc754a1efe48005 (diff) | |
download | php-git-cf90932a05b03354fdf6b844ff3a6902fc51a928.tar.gz |
Improve infrastructure of numeric handling of elements in symbol tables.
When you want to work with a symbol table, and you don't know whether you
have a numeric ("string that looks like a number") or a string element in
your hands, use zend_symtable_*() functions, in place of zend_hash_*()
functions.
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index fefc8652dd..045490dd8d 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -60,7 +60,6 @@ ZEND_API int is_smaller_function(zval *result, zval *op1, zval *op2 TSRMLS_DC); ZEND_API int is_smaller_or_equal_function(zval *result, zval *op1, zval *op2 TSRMLS_DC); ZEND_API zend_bool instanceof_function(zend_class_entry *instance_ce, zend_class_entry *ce TSRMLS_DC); -ZEND_API zend_bool zend_is_numeric_key(zval *, long *); static inline zend_bool is_numeric_string(char *str, int length, long *lval, double *dval, zend_bool allow_errors) { |