diff options
author | Jani Taskinen <jani@php.net> | 2007-11-02 19:40:39 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-11-02 19:40:39 +0000 |
commit | b48925117750da2a7fb7cff629e3852d13917f2f (patch) | |
tree | 44671e4afbcd83803757998784821a6cc19007b5 /ext/standard/basic_functions.h | |
parent | 0d7479891444f46d1c30cf875037e5099f8f782b (diff) | |
download | php-git-b48925117750da2a7fb7cff629e3852d13917f2f.tar.gz |
- MFH from HEAD:
. Folding tags
. Parameter parsing
. SPL debug info
. array function improvements (not all yet)
. Improvements to function calling with call_user_* functions
. Improvements to debugging info in var_dump/print_r
# I propably forgot already something but this all was pretty close tied
# to each other so it wasn't possible to do it in parts.
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r-- | ext/standard/basic_functions.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 4a800ae6bb..2c5f66d74e 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -166,8 +166,9 @@ typedef struct _php_basic_globals { char strtok_table[256]; ulong strtok_len; char str_ebuf[40]; - zval **array_walk_func_name; - zval **user_compare_func_name; + zend_fcall_info array_walk_fci; + zend_fcall_info_cache array_walk_fci_cache; + zend_fcall_info user_compare_fci; zend_fcall_info_cache user_compare_fci_cache; zend_llist *user_tick_functions; @@ -180,7 +181,7 @@ typedef struct _php_basic_globals { long page_uid; long page_gid; long page_inode; - long page_mtime; + time_t page_mtime; /* filestat.c && main/streams/streams.c */ char *CurrentStatFile, *CurrentLStatFile; |