File tree Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ PHP NEWS
11
11
functions. (Pierrick)
12
12
. Add support for HTTP/2 Server Push (davey)
13
13
14
+ - Date:
15
+ . Export date_get_interface_ce for extension use (Jeremy Mikola)
16
+
14
17
- PCRE:
15
18
. Fixed bug #72476 (Memleak in jit_stack). (Laruence)
16
19
. Fixed bug #72463 (mail fails with invalid argument). (Anatol)
Original file line number Diff line number Diff line change @@ -585,6 +585,11 @@ PHPAPI zend_class_entry *php_date_get_immutable_ce(void)
585
585
return date_ce_immutable ;
586
586
}
587
587
588
+ PHPAPI zend_class_entry * php_date_get_interface_ce (void )
589
+ {
590
+ return date_ce_interface ;
591
+ }
592
+
588
593
PHPAPI zend_class_entry * php_date_get_timezone_ce (void )
589
594
{
590
595
return date_ce_timezone ;
Original file line number Diff line number Diff line change @@ -221,6 +221,7 @@ PHPAPI timelib_tzinfo *get_timezone_info(void);
221
221
/* Grabbing CE's so that other exts can use the date objects too */
222
222
PHPAPI zend_class_entry * php_date_get_date_ce (void );
223
223
PHPAPI zend_class_entry * php_date_get_immutable_ce (void );
224
+ PHPAPI zend_class_entry * php_date_get_interface_ce (void );
224
225
PHPAPI zend_class_entry * php_date_get_timezone_ce (void );
225
226
226
227
/* Functions for creating DateTime objects, and initializing them from a string */
Original file line number Diff line number Diff line change
1
+ ../sapi/phpdbg
You can’t perform that action at this time.
0 commit comments