|
|
|
@ -2460,7 +2460,7 @@ PHP_FUNCTION(date_create) |
|
|
|
char *time_str = NULL; |
|
|
|
int time_str_len = 0; |
|
|
|
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sO", &time_str, &time_str_len, &timezone_object, date_ce_timezone) == FAILURE) { |
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sO!", &time_str, &time_str_len, &timezone_object, date_ce_timezone) == FAILURE) { |
|
|
|
RETURN_FALSE; |
|
|
|
} |
|
|
|
|
|
|
|
@ -2502,7 +2502,7 @@ PHP_METHOD(DateTime, __construct) |
|
|
|
zend_error_handling error_handling; |
|
|
|
|
|
|
|
zend_replace_error_handling(EH_THROW, NULL, &error_handling TSRMLS_CC); |
|
|
|
if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sO", &time_str, &time_str_len, &timezone_object, date_ce_timezone)) { |
|
|
|
if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sO!", &time_str, &time_str_len, &timezone_object, date_ce_timezone)) { |
|
|
|
php_date_initialize(zend_object_store_get_object(getThis() TSRMLS_CC), time_str, time_str_len, NULL, timezone_object, 1 TSRMLS_CC); |
|
|
|
} |
|
|
|
zend_restore_error_handling(&error_handling TSRMLS_CC); |
|
|
|
|