diff options
| author | Andi Gutmans <andi@php.net> | 2003-01-14 21:29:23 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 2003-01-14 21:29:23 +0000 |
| commit | c073b76aac82e3c00ad56119bd8e509f9f2a4670 (patch) | |
| tree | 07af3349629a78659d5a1c62a2650924c939a918 /Zend/zend_operators.c | |
| parent | e37aee1a34f8af77cce71468e70b2e268664f1bd (diff) | |
| download | php-git-c073b76aac82e3c00ad56119bd8e509f9f2a4670.tar.gz | |
- Change "is" to "instanceof" as it explains better what the operator means.
- "is_a" was also appropriate but ugly.
Diffstat (limited to 'Zend/zend_operators.c')
| -rw-r--r-- | Zend/zend_operators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index fd7142a8e9..e497947389 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1360,7 +1360,7 @@ ZEND_API int is_smaller_or_equal_function(zval *result, zval *op1, zval *op2 TSR } -ZEND_API int is_class_function(zval *result, zval *op1, zend_class_entry *class TSRMLS_DC) +ZEND_API int instanceof_function(zval *result, zval *op1, zend_class_entry *class TSRMLS_DC) { if (Z_TYPE_P(op1) == IS_OBJECT) { zend_class_entry *ce; |
