|
|
|
@ -513,7 +513,7 @@ static void _build_trace_string(zval *frame, zend_ulong index, zend_string **str |
|
|
|
{ |
|
|
|
char *s_tmp; |
|
|
|
int len; |
|
|
|
long line; |
|
|
|
zend_long line; |
|
|
|
HashTable *ht; |
|
|
|
zval *file, *tmp; |
|
|
|
zend_string *str = *str_ptr; |
|
|
|
@ -800,7 +800,7 @@ ZEND_API zend_class_entry *zend_get_error_exception(TSRMLS_D) /* {{{ */ |
|
|
|
} |
|
|
|
/* }}} */ |
|
|
|
|
|
|
|
ZEND_API zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *message, long code TSRMLS_DC) /* {{{ */ |
|
|
|
ZEND_API zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *message, zend_long code TSRMLS_DC) /* {{{ */ |
|
|
|
{ |
|
|
|
zval ex; |
|
|
|
|
|
|
|
@ -827,7 +827,7 @@ ZEND_API zend_object *zend_throw_exception(zend_class_entry *exception_ce, const |
|
|
|
} |
|
|
|
/* }}} */ |
|
|
|
|
|
|
|
ZEND_API zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, const char *format, ...) /* {{{ */ |
|
|
|
ZEND_API zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long code TSRMLS_DC, const char *format, ...) /* {{{ */ |
|
|
|
{ |
|
|
|
va_list arg; |
|
|
|
char *message; |
|
|
|
@ -842,7 +842,7 @@ ZEND_API zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, lo |
|
|
|
} |
|
|
|
/* }}} */ |
|
|
|
|
|
|
|
ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, long code, int severity TSRMLS_DC) /* {{{ */ |
|
|
|
ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, zend_long code, int severity TSRMLS_DC) /* {{{ */ |
|
|
|
{ |
|
|
|
zval ex; |
|
|
|
zend_object *obj = zend_throw_exception(exception_ce, message, code TSRMLS_CC); |
|
|
|
|