Агентство инноваций Ростовской области
@airo61
4 306
2021-01-15T13:11:55+00:00
🔹 объясняем, как получить федеральные и региональные меры поддержки для бизнеса 🔹 рассказываем о самых интересных бизнес-мероприятиях 🔹 представляем возможности предприятий региона
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
2021-01-15T13:11:55+00:00
2026-11-29T08:49:22+00:00
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
2021-01-15T13:11:55+00:00
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
2021-01-15T13:11:55+00:00
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
2021-01-15T13:11:55+00:00
<i class="emoji" style="background-image:url('//telegram.org/img/emoji/40/F09F918D.png')"><b>?</b></i>
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
/** * @param string | null $time String representation of datetime. * @param string | null $format PHP datetime format. If not specified, the format is got from the current culture. * @param \DateTimeZone | null $timezone Optional timezone object. * * @throws Main\ObjectException */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:20
/** * Converts date to string, using Culture and global timezone settings. * * @param Context\Culture | null $culture Culture contains datetime format. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:86
/** * Returns timezone object. * * @return \DateTimeZone */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:106
/** * Sets timezone object. * * @param \DateTimeZone $timezone Timezone object. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:118
/** * Sets default timezone. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:129
/** * @param int $hour Hour value. * @param int $minute Minute value. * @param int $second Second value. * @param int $microseconds Microseconds value. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:144
/** * Changes time from server time to user time using global timezone settings. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:155
/** * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:281
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:289
/** * @return $this */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:299
/** * @param string $format * @param string $time * @return array|bool */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:53
/** * Formats date value to string. * * @param string $format PHP date format. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:110
/** * Produces the copy of the object. * * @return void */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:120
/** * Performs dates arithmetic. * * Each duration period is represented by an integer value followed by a period * designator. If the duration contains time elements, that portion of the * specification is preceded by the letter T. * Period Designators: Y - years, M - months, D - days, W - weeks, H - hours, * M - minutes, S - seconds. * Examples: two days - 2D, two seconds - T2S, six years and five minutes - 6YT5M. * The unit types must be entered from the largest scale unit on the left to the * smallest scale unit on the right. * Use first "-" char for negative periods. * OR * Relative period. * Examples: "+5 weeks", "12 day", "-7 weekdays", '3 months - 5 days' * * @param string $interval Time interval to add. * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:145
/** * Sets the current date of the DateTime object to a different date. * @param int $year * @param int $month * @param int $day * * @return $this */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:169
/** * Returns Unix timestamp from date. * * @return int */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:218
/** * Returns difference between dates. * * @param Date $time * @return \DateInterval */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:229
/** * Converts a date to the string with default culture format setting. * * @return string */ Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:252
Inherited from Bitrix\Main\Type\Date Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:176
Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:71
/** * Creates DateTime object from local user time using global timezone settings and default culture. * * @param string $timeString Full or short formatted time. * * @return DateTime */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:180
/** * Returns long (including time) date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:216
/** * Creates DateTime object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:232
/** * Creates DateTime object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:246
/** * Creates DateTime object from string. * NULL will be returned on failure. * @param string $timeString Full formatted time. * @param string $format PHP datetime format. If not specified, the format is got from the current culture. * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/datetime.php:260
/** * Returns a date format from the culture in the php format. * * @param Context\Culture | null $culture Optional culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:264
/** * Converts date format from culture to php format. * * @param string $format Format string. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:309
/** * Checks the string for correct date (by trying to create Date object). * * @param string $time String representation of date. * @param string $format PHP date format. If not specified, the format is got from the current culture. * * @return bool */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:359
/** * Creates Date object from Text (return array of result object) * Examples: "end of next week", "tomorrow morning", "friday 25.10" * * @param string $text * @return DateTime|null */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:417
/** * Returns short date culture format. * * @param Context\Culture | null $culture Culture. * * @return string */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:293
/** * Creates Date object from PHP \DateTime object. * * @param \DateTime $datetime Source object. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:387
/** * Creates Date object from Unix timestamp. * * @param int $timestamp Source timestamp. * * @return static */ Defined in <ROOT>/bitrix/modules/main/lib/type/date.php:402
**?Найти заказчиков, привлечь финансирование и получить господдержку**! Все это можно сделать на платформе [МСП.РФ](https://xn--l1agf.xn--p1ai/) **Более 30 сервисов** для предпринимателей от обучения до разработки инвестпроектов???? **Некоторые инструменты на платформе:** ?**проверить контрагентов:** избежите рисков ведения бизнеса с недобросовестным контрагентом ?**пройти бизнес-обучение:** оценка компетенций, лекции, создание стратегии ?**получить региональные меры поддержки:** субсидии, льготное финансирование, сертификации ?**найти имущество для бизнеса: **подобрать помещение или земельный участок для покупки или аренды, в том числе на льготных условиях Через сервис микрофинансирования МСП уже получили **18 млрд ?**? Для вашего удобства [МСП.РФ](https://xn--l1agf.xn--p1ai/) интегрирован с Минфином, Госуслугами и личным кабинетом налогоплательщика.
<b>??Найти заказчиков, привлечь финансирование и получить господдержку</b>! Все это можно сделать на платформе <a href="https://xn--l1agf.xn--p1ai/">МСП.РФ</a><br> <br> <b>Более 30 сервисов</b> для предпринимателей от обучения до разработки инвестпроектов???????<br> <br> <b>Некоторые инструменты на платформе:</b><br> ??<b>проверить контрагентов:</b> избежите рисков ведения бизнеса с недобросовестным контрагентом<br> ??<b>пройти бизнес-обучение:</b> оценка компетенций, лекции, создание стратегии <br> ??<b>получить региональные меры поддержки:</b> субсидии, льготное финансирование, сертификации<br> ??<b>найти имущество для бизнеса: </b>подобрать помещение или земельный участок для покупки или аренды, в том числе на льготных условиях<br> <br> Через сервис микрофинансирования МСП уже получили <b>18 млрд ?</b>??<br> <br> Для вашего удобства <a href="https://xn--l1agf.xn--p1ai/">МСП.РФ</a> интегрирован с Минфином, Госуслугами и личным кабинетом налогоплательщика.
Обсуждение 0
Обсуждение не доступно в веб-версии. Чтобы написать комментарий, перейдите в приложение Telegram.
Обсудить в Telegram