1999-09-20 20:24:39 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1998, 1999 Andi Gutmans, Zeev Suraski |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 0.91 of the Zend license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
|
|
|
| http://www.zend.com/license/0_91.txt. |
|
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_API.h"
|
|
|
|
#include "zend_builtin_functions.h"
|
1999-09-20 21:00:35 +08:00
|
|
|
#include "zend_operators.h"
|
|
|
|
#include "zend_variables.h"
|
1999-09-21 05:28:37 +08:00
|
|
|
#include "zend_constants.h"
|
1999-09-20 20:24:39 +08:00
|
|
|
|
|
|
|
static ZEND_FUNCTION(zend_version);
|
1999-09-21 15:31:24 +08:00
|
|
|
static ZEND_FUNCTION(func_num_args);
|
|
|
|
static ZEND_FUNCTION(func_get_arg);
|
|
|
|
static ZEND_FUNCTION(func_get_args);
|
1999-09-21 00:56:09 +08:00
|
|
|
static ZEND_FUNCTION(strlen);
|
|
|
|
static ZEND_FUNCTION(strcmp);
|
2000-02-09 01:19:43 +08:00
|
|
|
static ZEND_FUNCTION(strncmp);
|
1999-09-21 00:56:09 +08:00
|
|
|
static ZEND_FUNCTION(strcasecmp);
|
|
|
|
static ZEND_FUNCTION(each);
|
|
|
|
static ZEND_FUNCTION(error_reporting);
|
1999-09-21 05:28:37 +08:00
|
|
|
static ZEND_FUNCTION(define);
|
|
|
|
static ZEND_FUNCTION(defined);
|
|
|
|
static ZEND_FUNCTION(get_class);
|
|
|
|
static ZEND_FUNCTION(get_parent_class);
|
|
|
|
static ZEND_FUNCTION(method_exists);
|
1999-12-15 05:15:24 +08:00
|
|
|
static ZEND_FUNCTION(class_exists);
|
|
|
|
static ZEND_FUNCTION(function_exists);
|
1999-09-21 05:28:37 +08:00
|
|
|
static ZEND_FUNCTION(leak);
|
2000-02-15 03:08:51 +08:00
|
|
|
#ifdef ZEND_TEST_EXCEPTIONS
|
2000-02-13 09:22:11 +08:00
|
|
|
static ZEND_FUNCTION(crash);
|
2000-02-15 03:08:51 +08:00
|
|
|
#endif
|
1999-12-04 22:26:26 +08:00
|
|
|
static ZEND_FUNCTION(get_used_files);
|
|
|
|
static ZEND_FUNCTION(get_imported_files);
|
1999-12-16 05:26:43 +08:00
|
|
|
static ZEND_FUNCTION(is_subclass_of);
|
1999-09-20 20:24:39 +08:00
|
|
|
|
1999-09-22 17:57:42 +08:00
|
|
|
extern unsigned char first_arg_force_ref[];
|
|
|
|
|
2000-02-13 09:22:11 +08:00
|
|
|
#undef ZEND_TEST_EXCEPTIONS
|
|
|
|
|
1999-09-20 20:24:39 +08:00
|
|
|
static zend_function_entry builtin_functions[] = {
|
|
|
|
ZEND_FE(zend_version, NULL)
|
1999-09-21 15:31:24 +08:00
|
|
|
ZEND_FE(func_num_args, NULL)
|
|
|
|
ZEND_FE(func_get_arg, NULL)
|
|
|
|
ZEND_FE(func_get_args, NULL)
|
1999-09-21 00:56:09 +08:00
|
|
|
ZEND_FE(strlen, NULL)
|
|
|
|
ZEND_FE(strcmp, NULL)
|
2000-02-09 01:19:43 +08:00
|
|
|
ZEND_FE(strncmp, NULL)
|
1999-09-21 00:56:09 +08:00
|
|
|
ZEND_FE(strcasecmp, NULL)
|
1999-09-22 17:57:42 +08:00
|
|
|
ZEND_FE(each, first_arg_force_ref)
|
1999-09-21 00:56:09 +08:00
|
|
|
ZEND_FE(error_reporting, NULL)
|
1999-09-21 05:28:37 +08:00
|
|
|
ZEND_FE(define, NULL)
|
|
|
|
ZEND_FE(defined, NULL)
|
|
|
|
ZEND_FE(get_class, NULL)
|
|
|
|
ZEND_FE(get_parent_class, NULL)
|
|
|
|
ZEND_FE(method_exists, NULL)
|
1999-12-15 05:15:24 +08:00
|
|
|
ZEND_FE(class_exists, NULL)
|
|
|
|
ZEND_FE(function_exists, NULL)
|
1999-09-21 05:28:37 +08:00
|
|
|
ZEND_FE(leak, NULL)
|
2000-02-13 09:22:11 +08:00
|
|
|
#ifdef ZEND_TEST_EXCEPTIONS
|
|
|
|
ZEND_FE(crash, NULL)
|
|
|
|
#endif
|
1999-12-04 22:26:26 +08:00
|
|
|
ZEND_FE(get_used_files, NULL)
|
|
|
|
ZEND_FE(get_imported_files, NULL)
|
1999-12-16 05:26:43 +08:00
|
|
|
ZEND_FE(is_subclass_of, NULL)
|
1999-09-20 20:24:39 +08:00
|
|
|
{ NULL, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int zend_startup_builtin_functions()
|
|
|
|
{
|
|
|
|
return zend_register_functions(builtin_functions, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_FUNCTION(zend_version)
|
|
|
|
{
|
|
|
|
RETURN_STRINGL(ZEND_VERSION, sizeof(ZEND_VERSION)-1, 1);
|
|
|
|
}
|
1999-09-20 21:00:35 +08:00
|
|
|
|
|
|
|
|
1999-09-21 15:31:24 +08:00
|
|
|
ZEND_FUNCTION(func_num_args)
|
1999-09-20 21:00:35 +08:00
|
|
|
{
|
|
|
|
void **p;
|
|
|
|
int arg_count;
|
|
|
|
|
|
|
|
p = EG(argument_stack).top_element-1;
|
1999-09-21 15:31:24 +08:00
|
|
|
arg_count = (ulong) *p; /* this is the amount of arguments passed to func_num_args(); */
|
1999-09-20 21:00:35 +08:00
|
|
|
|
|
|
|
p = EG(argument_stack).top_element-1-arg_count-1;
|
|
|
|
if (p>=EG(argument_stack).elements) {
|
|
|
|
RETURN_LONG((ulong) *p);
|
|
|
|
} else {
|
1999-09-21 15:31:24 +08:00
|
|
|
zend_error(E_WARNING, "func_num_args(): Called from the global scope - no function context");
|
1999-09-20 21:00:35 +08:00
|
|
|
RETURN_LONG(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-21 15:31:24 +08:00
|
|
|
ZEND_FUNCTION(func_get_arg)
|
1999-09-20 21:00:35 +08:00
|
|
|
{
|
|
|
|
void **p;
|
|
|
|
int arg_count;
|
|
|
|
zval **z_requested_offset;
|
|
|
|
zval *arg;
|
|
|
|
long requested_offset;
|
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1, &z_requested_offset)==FAILURE) {
|
1999-09-20 21:00:35 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
convert_to_long_ex(z_requested_offset);
|
|
|
|
requested_offset = (*z_requested_offset)->value.lval;
|
|
|
|
|
|
|
|
p = EG(argument_stack).top_element-1;
|
1999-09-21 15:31:24 +08:00
|
|
|
arg_count = (ulong) *p; /* this is the amount of arguments passed to func_num_args(); */
|
1999-09-20 21:00:35 +08:00
|
|
|
|
|
|
|
p = EG(argument_stack).top_element-1-arg_count-1;
|
|
|
|
if (p<EG(argument_stack).elements) {
|
1999-09-21 15:31:24 +08:00
|
|
|
zend_error(E_WARNING, "func_get_arg(): Called from the global scope - no function context");
|
1999-09-20 21:00:35 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
arg_count = (ulong) *p;
|
|
|
|
|
2000-02-15 03:08:51 +08:00
|
|
|
if (requested_offset>=arg_count) {
|
|
|
|
zend_error(E_WARNING, "func_get_arg(): Argument %d not passed to function", requested_offset);
|
1999-09-20 21:00:35 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
arg = *(p-(arg_count-requested_offset));
|
|
|
|
*return_value = *arg;
|
|
|
|
zval_copy_ctor(return_value);
|
|
|
|
}
|
|
|
|
|
1999-09-21 15:31:24 +08:00
|
|
|
|
|
|
|
ZEND_FUNCTION(func_get_args)
|
|
|
|
{
|
|
|
|
void **p;
|
|
|
|
int arg_count;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
p = EG(argument_stack).top_element-1;
|
|
|
|
arg_count = (ulong) *p; /* this is the amount of arguments passed to func_num_args(); */
|
|
|
|
|
|
|
|
p = EG(argument_stack).top_element-1-arg_count-1;
|
|
|
|
if (p<EG(argument_stack).elements) {
|
|
|
|
zend_error(E_WARNING, "func_get_args(): Called from the global scope - no function context");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
arg_count = (ulong) *p;
|
|
|
|
|
|
|
|
|
|
|
|
array_init(return_value);
|
|
|
|
for (i=0; i<arg_count; i++) {
|
|
|
|
zval *element;
|
|
|
|
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(element);
|
1999-09-21 15:31:24 +08:00
|
|
|
*element = **((zval **) (p-(arg_count-i)));
|
|
|
|
zval_copy_ctor(element);
|
|
|
|
INIT_PZVAL(element);
|
|
|
|
zend_hash_next_index_insert(return_value->value.ht, &element, sizeof(zval *), NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-21 00:56:09 +08:00
|
|
|
/* {{{ proto int strlen(string str)
|
|
|
|
Get string length */
|
|
|
|
ZEND_FUNCTION(strlen)
|
|
|
|
{
|
|
|
|
zval **str;
|
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &str) == FAILURE) {
|
1999-09-21 00:56:09 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_string_ex(str);
|
|
|
|
RETVAL_LONG((*str)->value.str.len);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int strcmp(string str1, string str2)
|
|
|
|
Binary safe string comparison */
|
|
|
|
ZEND_FUNCTION(strcmp)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **s1, **s2;
|
1999-09-21 00:56:09 +08:00
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &s1, &s2) == FAILURE) {
|
1999-09-21 00:56:09 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
convert_to_string_ex(s1);
|
|
|
|
convert_to_string_ex(s2);
|
2000-01-25 03:00:30 +08:00
|
|
|
RETURN_LONG(zend_binary_zval_strcmp(*s1,*s2));
|
1999-09-21 00:56:09 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-02-09 01:19:43 +08:00
|
|
|
/* {{{ proto int strncmp(string str1, string str2, int len)
|
|
|
|
Binary safe string comparison */
|
|
|
|
ZEND_FUNCTION(strncmp)
|
|
|
|
{
|
|
|
|
zval **s1, **s2, **s3;
|
|
|
|
|
|
|
|
if (ZEND_NUM_ARGS() != 3 || zend_get_parameters_ex(3, &s1, &s2, &s3) == FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_string_ex(s1);
|
|
|
|
convert_to_string_ex(s2);
|
|
|
|
convert_to_long_ex(s3);
|
|
|
|
RETURN_LONG(zend_binary_zval_strncmp(*s1,*s2,*s3));
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-09-21 00:56:09 +08:00
|
|
|
/* {{{ proto int strcasecmp(string str1, string str2)
|
|
|
|
Binary safe case-insensitive string comparison */
|
|
|
|
ZEND_FUNCTION(strcasecmp)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **s1, **s2;
|
1999-09-21 00:56:09 +08:00
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=2 || zend_get_parameters_ex(2, &s1, &s2) == FAILURE) {
|
1999-09-21 00:56:09 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
convert_to_string_ex(s1);
|
|
|
|
convert_to_string_ex(s2);
|
2000-01-25 03:00:30 +08:00
|
|
|
RETURN_LONG(zend_binary_zval_strcasecmp(*s1, *s2));
|
1999-09-21 00:56:09 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
ZEND_FUNCTION(each)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **array,*entry,**entry_ptr, *tmp;
|
1999-09-21 00:56:09 +08:00
|
|
|
char *string_key;
|
|
|
|
ulong num_key;
|
|
|
|
zval **inserted_pointer;
|
|
|
|
HashTable *target_hash;
|
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &array) == FAILURE) {
|
1999-09-21 00:56:09 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
target_hash = HASH_OF(*array);
|
1999-09-21 00:56:09 +08:00
|
|
|
if (!target_hash) {
|
|
|
|
zend_error(E_WARNING,"Variable passed to each() is not an array or object");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (zend_hash_get_current_data(target_hash, (void **) &entry_ptr)==FAILURE) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
array_init(return_value);
|
|
|
|
entry = *entry_ptr;
|
|
|
|
|
|
|
|
/* add value elements */
|
1999-10-02 07:31:39 +08:00
|
|
|
if (entry->is_ref) {
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(tmp);
|
1999-09-21 00:56:09 +08:00
|
|
|
*tmp = *entry;
|
|
|
|
zval_copy_ctor(tmp);
|
1999-10-02 07:31:39 +08:00
|
|
|
tmp->is_ref=0;
|
1999-09-21 00:56:09 +08:00
|
|
|
tmp->refcount=0;
|
|
|
|
entry=tmp;
|
|
|
|
}
|
|
|
|
zend_hash_index_update(return_value->value.ht, 1, &entry, sizeof(zval *), NULL);
|
|
|
|
entry->refcount++;
|
|
|
|
zend_hash_update_ptr(return_value->value.ht, "value", sizeof("value"), entry, sizeof(zval *), NULL);
|
|
|
|
entry->refcount++;
|
|
|
|
|
|
|
|
/* add the key elements */
|
|
|
|
switch (zend_hash_get_current_key(target_hash, &string_key, &num_key)) {
|
|
|
|
case HASH_KEY_IS_STRING:
|
|
|
|
add_get_index_string(return_value,0,string_key,(void **) &inserted_pointer,0);
|
|
|
|
break;
|
|
|
|
case HASH_KEY_IS_LONG:
|
|
|
|
add_get_index_long(return_value,0,num_key, (void **) &inserted_pointer);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
zend_hash_update(return_value->value.ht, "key", sizeof("key"), inserted_pointer, sizeof(zval *), NULL);
|
|
|
|
(*inserted_pointer)->refcount++;
|
|
|
|
zend_hash_move_forward(target_hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
ZEND_FUNCTION(error_reporting)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **arg;
|
1999-09-21 00:56:09 +08:00
|
|
|
int old_error_reporting;
|
|
|
|
|
|
|
|
old_error_reporting = EG(error_reporting);
|
1999-12-19 06:23:23 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-09-21 00:56:09 +08:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:
|
1999-12-19 06:23:23 +08:00
|
|
|
if (zend_get_parameters_ex(1,&arg) == FAILURE) {
|
1999-09-21 00:56:09 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
convert_to_long_ex(arg);
|
|
|
|
EG(error_reporting)=(*arg)->value.lval;
|
1999-09-21 00:56:09 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
RETVAL_LONG(old_error_reporting);
|
1999-09-21 01:01:38 +08:00
|
|
|
}
|
1999-09-21 05:28:37 +08:00
|
|
|
|
|
|
|
ZEND_FUNCTION(define)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **var, **val, **non_cs;
|
1999-09-21 05:28:37 +08:00
|
|
|
int case_sensitive;
|
|
|
|
zend_constant c;
|
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
switch(ZEND_NUM_ARGS()) {
|
1999-09-21 05:28:37 +08:00
|
|
|
case 2:
|
1999-12-19 06:23:23 +08:00
|
|
|
if (zend_get_parameters_ex(2, &var, &val)==FAILURE) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
case_sensitive = CONST_CS;
|
|
|
|
break;
|
|
|
|
case 3:
|
1999-12-19 06:23:23 +08:00
|
|
|
if (zend_get_parameters_ex(3, &var, &val, &non_cs)==FAILURE) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
convert_to_long_ex(non_cs);
|
|
|
|
if ((*non_cs)->value.lval) {
|
1999-09-21 05:28:37 +08:00
|
|
|
case_sensitive = 0;
|
|
|
|
} else {
|
|
|
|
case_sensitive = CONST_CS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
switch((*val)->type) {
|
1999-09-21 05:28:37 +08:00
|
|
|
case IS_LONG:
|
|
|
|
case IS_DOUBLE:
|
|
|
|
case IS_STRING:
|
|
|
|
case IS_BOOL:
|
|
|
|
case IS_RESOURCE:
|
2000-01-04 21:22:58 +08:00
|
|
|
case IS_NULL:
|
1999-09-21 05:28:37 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
zend_error(E_WARNING,"Constants may only evaluate to scalar values");
|
|
|
|
RETURN_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
convert_to_string_ex(var);
|
1999-09-21 05:28:37 +08:00
|
|
|
|
1999-10-04 21:27:12 +08:00
|
|
|
c.value = **val;
|
1999-09-21 05:28:37 +08:00
|
|
|
zval_copy_ctor(&c.value);
|
|
|
|
c.flags = case_sensitive | ~CONST_PERSISTENT; /* non persistent */
|
1999-10-04 21:27:12 +08:00
|
|
|
c.name = zend_strndup((*var)->value.str.val, (*var)->value.str.len);
|
|
|
|
c.name_len = (*var)->value.str.len+1;
|
1999-09-21 05:28:37 +08:00
|
|
|
zend_register_constant(&c ELS_CC);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_FUNCTION(defined)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **var;
|
1999-09-21 05:28:37 +08:00
|
|
|
zval c;
|
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1, &var)==FAILURE) {
|
1999-09-21 05:28:37 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
1999-10-04 21:27:12 +08:00
|
|
|
convert_to_string_ex(var);
|
|
|
|
if (zend_get_constant((*var)->value.str.val, (*var)->value.str.len, &c)) {
|
1999-09-21 05:28:37 +08:00
|
|
|
zval_dtor(&c);
|
|
|
|
RETURN_LONG(1);
|
|
|
|
} else {
|
|
|
|
RETURN_LONG(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* {{{ proto string get_class(object object)
|
|
|
|
Retrieves the class name ...
|
|
|
|
*/
|
|
|
|
ZEND_FUNCTION(get_class)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **arg;
|
1999-09-21 05:28:37 +08:00
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1, &arg)==FAILURE) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
if ((*arg)->type != IS_OBJECT) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
RETURN_STRINGL((*arg)->value.obj.ce->name, (*arg)->value.obj.ce->name_length, 1);
|
1999-09-21 05:28:37 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string get_parent_class(object object)
|
|
|
|
Retrieves the parent class name ...
|
|
|
|
*/
|
|
|
|
ZEND_FUNCTION(get_parent_class)
|
|
|
|
{
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **arg;
|
1999-09-21 05:28:37 +08:00
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1, &arg)==FAILURE) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
if (((*arg)->type != IS_OBJECT) || !(*arg)->value.obj.ce->parent) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-10-04 21:27:12 +08:00
|
|
|
RETURN_STRINGL((*arg)->value.obj.ce->parent->name, (*arg)->value.obj.ce->parent->name_length, 1);
|
1999-09-21 05:28:37 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
1999-12-16 05:26:43 +08:00
|
|
|
|
|
|
|
/* {{{ proto bool is_subclass_of(object object, string class_name)
|
1999-12-16 06:37:05 +08:00
|
|
|
Returns true if the object has this class as one of its parents */
|
1999-12-16 05:26:43 +08:00
|
|
|
ZEND_FUNCTION(is_subclass_of)
|
|
|
|
{
|
|
|
|
zval **obj, **class_name;
|
|
|
|
char *lcname;
|
|
|
|
zend_class_entry *parent_ce = NULL;
|
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &obj, &class_name)==FAILURE) {
|
1999-12-16 05:26:43 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((*obj)->type != IS_OBJECT) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_string_ex(class_name);
|
|
|
|
lcname = estrndup((*class_name)->value.str.val, (*class_name)->value.str.len);
|
|
|
|
zend_str_tolower(lcname, (*class_name)->value.str.len);
|
|
|
|
|
1999-12-16 06:37:05 +08:00
|
|
|
for (parent_ce = (*obj)->value.obj.ce->parent; parent_ce != NULL; parent_ce = parent_ce->parent) {
|
1999-12-16 05:26:43 +08:00
|
|
|
if (!strcmp(parent_ce->name, lcname)) {
|
|
|
|
efree(lcname);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
1999-12-16 06:37:05 +08:00
|
|
|
}
|
1999-12-16 05:26:43 +08:00
|
|
|
efree(lcname);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
1999-09-21 05:28:37 +08:00
|
|
|
|
|
|
|
/* {{{ proto bool method_exists(object object, string method)
|
|
|
|
Checks if the class method exists ...
|
|
|
|
*/
|
|
|
|
ZEND_FUNCTION(method_exists)
|
|
|
|
{
|
1999-12-15 05:15:24 +08:00
|
|
|
zval **klass, **method_name;
|
|
|
|
char *lcname;
|
1999-09-21 05:28:37 +08:00
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=2 || zend_get_parameters_ex(2, &klass, &method_name)==FAILURE) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-12-15 05:15:24 +08:00
|
|
|
if ((*klass)->type != IS_OBJECT) {
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-12-15 05:15:24 +08:00
|
|
|
convert_to_string_ex(method_name);
|
1999-12-16 00:54:46 +08:00
|
|
|
lcname = estrndup((*method_name)->value.str.val, (*method_name)->value.str.len);
|
1999-12-15 05:15:24 +08:00
|
|
|
zend_str_tolower(lcname, (*method_name)->value.str.len);
|
|
|
|
if(zend_hash_exists(&(*klass)->value.obj.ce->function_table, lcname, (*method_name)->value.str.len+1)) {
|
|
|
|
efree(lcname);
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
} else {
|
1999-12-15 05:15:24 +08:00
|
|
|
efree(lcname);
|
1999-09-21 05:28:37 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-12-15 05:15:24 +08:00
|
|
|
/* {{{ proto bool class_exists(string classname)
|
|
|
|
Checks if the class exists ...
|
|
|
|
*/
|
|
|
|
ZEND_FUNCTION(class_exists)
|
|
|
|
{
|
|
|
|
zval **class_name;
|
|
|
|
char *lcname;
|
|
|
|
CLS_FETCH();
|
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &class_name)==FAILURE) {
|
1999-12-15 05:15:24 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
convert_to_string_ex(class_name);
|
1999-12-15 23:59:04 +08:00
|
|
|
lcname = estrndup((*class_name)->value.str.val, (*class_name)->value.str.len);
|
1999-12-15 05:15:24 +08:00
|
|
|
zend_str_tolower(lcname, (*class_name)->value.str.len);
|
|
|
|
if (zend_hash_exists(CG(class_table), lcname, (*class_name)->value.str.len+1)) {
|
|
|
|
efree(lcname);
|
|
|
|
RETURN_TRUE;
|
|
|
|
} else {
|
|
|
|
efree(lcname);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto bool function_exists(string function_name)
|
|
|
|
Checks if the function exists */
|
|
|
|
ZEND_FUNCTION(function_exists)
|
|
|
|
{
|
|
|
|
zval **function_name;
|
|
|
|
char *lcname;
|
1999-12-23 02:49:23 +08:00
|
|
|
int retval;
|
1999-12-15 05:15:24 +08:00
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1, &function_name)==FAILURE) {
|
1999-12-15 05:15:24 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_string_ex(function_name);
|
1999-12-15 23:59:04 +08:00
|
|
|
lcname = estrndup((*function_name)->value.str.val, (*function_name)->value.str.len);
|
1999-12-15 05:15:24 +08:00
|
|
|
zend_str_tolower(lcname, (*function_name)->value.str.len);
|
1999-12-23 02:49:23 +08:00
|
|
|
|
|
|
|
retval = zend_hash_exists(EG(function_table), lcname, (*function_name)->value.str.len+1);
|
|
|
|
efree(lcname);
|
|
|
|
|
|
|
|
RETURN_BOOL(retval);
|
1999-12-15 05:15:24 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-02-13 09:22:11 +08:00
|
|
|
|
1999-09-21 05:28:37 +08:00
|
|
|
ZEND_FUNCTION(leak)
|
|
|
|
{
|
|
|
|
int leakbytes=3;
|
1999-10-04 21:27:12 +08:00
|
|
|
zval **leak;
|
1999-09-21 05:28:37 +08:00
|
|
|
|
1999-12-19 06:23:23 +08:00
|
|
|
if (ZEND_NUM_ARGS()>=1) {
|
|
|
|
if (zend_get_parameters_ex(1, &leak)==SUCCESS) {
|
1999-10-04 21:27:12 +08:00
|
|
|
convert_to_long_ex(leak);
|
|
|
|
leakbytes = (*leak)->value.lval;
|
1999-09-21 05:28:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
emalloc(leakbytes);
|
|
|
|
}
|
1999-12-04 22:26:26 +08:00
|
|
|
|
|
|
|
|
2000-02-15 03:08:51 +08:00
|
|
|
#ifdef ZEND_TEST_EXCEPTIONS
|
2000-02-13 09:22:11 +08:00
|
|
|
ZEND_FUNCTION(crash)
|
|
|
|
{
|
|
|
|
char *nowhere=NULL;
|
|
|
|
|
|
|
|
memcpy(nowhere, "something", sizeof("something"));
|
|
|
|
}
|
2000-02-15 03:08:51 +08:00
|
|
|
#endif
|
2000-02-13 09:22:11 +08:00
|
|
|
|
|
|
|
|
1999-12-04 22:26:26 +08:00
|
|
|
static int copy_import_use_file(zend_file_handle *fh, zval *array)
|
|
|
|
{
|
|
|
|
if (fh->filename) {
|
|
|
|
char *extension_start;
|
|
|
|
|
|
|
|
extension_start = strstr(fh->filename, zend_uv.import_use_extension);
|
|
|
|
if (extension_start) {
|
|
|
|
*extension_start = 0;
|
|
|
|
if (fh->opened_path) {
|
|
|
|
add_assoc_string(array, fh->filename, fh->opened_path, 1);
|
|
|
|
} else {
|
|
|
|
add_assoc_stringl(array, fh->filename, "N/A", sizeof("N/A")-1, 1);
|
|
|
|
}
|
|
|
|
*extension_start = zend_uv.import_use_extension[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_FUNCTION(get_used_files)
|
|
|
|
{
|
|
|
|
CLS_FETCH();
|
|
|
|
|
|
|
|
array_init(return_value);
|
|
|
|
zend_hash_apply_with_argument(&CG(used_files), (int (*)(void *, void *)) copy_import_use_file, return_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_FUNCTION(get_imported_files)
|
|
|
|
{
|
|
|
|
array_init(return_value);
|
|
|
|
zend_hash_apply_with_argument(&EG(imported_files), (int (*)(void *, void *)) copy_import_use_file, return_value);
|
|
|
|
}
|