Lines Matching refs:isostr
4868 …t_iso8601_string(php_period_obj *dpobj, zend_class_entry* base_ce, char *isostr, size_t isostr_len… in date_period_init_iso8601_string() argument
4870 …_initialize(&(dpobj->start), &(dpobj->end), &(dpobj->interval), recurrences, isostr, isostr_len)) { in date_period_init_iso8601_string()
4876 …xception, 0, "%s(): ISO interval must contain a start date, \"%s\" given", ZSTR_VAL(func), isostr); in date_period_init_iso8601_string()
4882 …exception, 0, "%s(): ISO interval must contain an interval, \"%s\" given", ZSTR_VAL(func), isostr); in date_period_init_iso8601_string()
4888 …SO interval must contain an end date or a recurrence count, \"%s\" given", ZSTR_VAL(func), isostr); in date_period_init_iso8601_string()
4931 char *isostr = NULL; in PHP_METHOD() local
4934 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &isostr, &isostr_len, &options) == FAILURE) { in PHP_METHOD()
4943 …if (!date_period_init_iso8601_string(dpobj, date_ce_immutable, isostr, isostr_len, options, &recur… in PHP_METHOD()
4959 char *isostr = NULL; in PHP_METHOD() local
4965 …if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "s|l", &isostr, &isostr_len… in PHP_METHOD()
4975 if (isostr) { in PHP_METHOD()
4976 …if (!date_period_init_iso8601_string(dpobj, date_ce_date, isostr, isostr_len, options, &recurrence… in PHP_METHOD()