Your IP : 18.188.241.246


Current Path : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/modules/clouds/classes/general/
Upload File :
Current File : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/modules/clouds/classes/general/util.php

<?php

class CCloudUtil
{
	/**
	 * @param string $str
	 * @param string $charset
	 * @return string
	*/
	public static function URLEncode($str, $charset, $file_name = false)
	{
		global $APPLICATION;
		$strEncodedURL = '';

		if ($file_name)
		{
			$arUrlComponents = preg_split("#(://|/)#", $str, -1, PREG_SPLIT_DELIM_CAPTURE);
		}
		else
		{
			$arUrlComponents = preg_split("#(://|/|\\?|=|&)#", $str, -1, PREG_SPLIT_DELIM_CAPTURE);
		}

		foreach($arUrlComponents as $i => $part_of_url)
		{
			if((intval($i) % 2) == 1)
			{
				$strEncodedURL .= (string)$part_of_url;
			}
			elseif (defined('BX_CLOUD_OLD_URL_ENCODE') && constant('BX_CLOUD_OLD_URL_ENCODE') === true)
			{
				$strEncodedURL .= rawurlencode($APPLICATION->ConvertCharset(rawurldecode((string)$part_of_url), LANG_CHARSET, $charset));
			}
			else
			{
				$strEncodedURL .= rawurlencode($APPLICATION->ConvertCharset((string)$part_of_url, LANG_CHARSET, $charset));
			}
		}

		return $strEncodedURL;
	}
	/**
	 * @param string $str
	 * @return \Bitrix\Main\Type\DateTime
	*/
	public static function gmtTimeToDateTime($str)
	{
		$timestamp = strtotime($str."Z");
		$datetime = \Bitrix\Main\Type\DateTime::createFromTimestamp($timestamp);
		return $datetime;
	}
}