#Mac OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by JetBrains PhpStorm. | |
* User: aobukhov | |
* Date: 1/15/13 | |
* Time: 7:40 PM | |
*/ | |
class CurlRequest implements CurlInterface | |
{ | |
private $curlResource = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Функция генерации превью изображений с помощью phpthumb 3.x | |
* | |
* @param str|int $src относительный или абсолютный путь к картинке или id файла Битрикса | |
* @param int $width ширина превью (0 - авто) | |
* @param int $heigth высота превью (0 - авто) | |
* @param bool $adaptive метод резайза adaptive/resize | |
* @param bool $clear_cache разрешить пересоздавать превью при обновлении кеша страницы Битрикса ($_GET['clear_cache']) | |
* @param int $lifetime время перегенерации превью, в милисекундах |