Skip to content

Instantly share code, notes, and snippets.

View Pum-purum's full-sized avatar
🏠
Working from home

Андрей Pum-purum

🏠
Working from home
  • Russia
View GitHub Profile
@luckydevilru
luckydevilru / crm-bitrix.php
Last active February 9, 2024 09:55
Создание лида и отправка utm меток в crm bitrix24 битрикс
<?
// НЕ ЗАБУДЬ ОТПРАВИТЬ НА ОБРАБОТЧИК ДАННЫЕ
// order.php?<? echo strstr($_SERVER['REQUEST_URI'],'?')
?>
<?
// ЛОГИРОВАНИЕ В ФАЙЛ
function writeToLog($data, $title = '')
@nalgeon
nalgeon / README.md
Last active September 30, 2020 16:11
Пример работы с API стандартизации DaData на PHP
@realmyst
realmyst / gist:1262561
Created October 4, 2011 19:34
Склонение числительных в javascript
function declOfNum(number, titles) {
cases = [2, 0, 1, 1, 1, 2];
return titles[ (number%100>4 && number%100<20)? 2 : cases[(number%10<5)?number%10:5] ];
}
use:
declOfNum(count, ['найдена', 'найдено', 'найдены']);