Telegram RegisterThe public register of Telegram
Telegram profile photo for 22

Channel

22

@ololoeee

On this record: Growth · Engagement · What this channel posts · Posts · Citations · Handles named that no longer answer · Cite this entry

2subscribers

+0 since we began measuring on 7 August 2026

Risers and fallers across the register · movement among entries of Under 1,000.

Register entry

Telegram ID-1002310550869
TypeChannel
Username@ololoeee
Created10 February 2025measured — dated from the channel’s first post
First recorded14 August 2026
Last confirmed live22 August 2026
Measurements held2
On Telegramt.me/ololoeee

Growth

27 August 2026 — 2 subscribers14 August 2026 — 2 subscribers7 August 202614 August 2026
2 measurements spanning 7 days. Dots are measurements; the straight line between them is drawn to join them, not to claim we know the path taken in between — snapshots are recorded only when a count changes, so gaps mean “no change observed”, never “interpolated”. The vertical axis spans 1–3 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
14 Aug 2026, 04:022no change
7 Aug 2026, 15:412first reading

Engagement

12 posts held, back to 10 February 2025the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 1 pageof Telegram’s post history, 20 posts per page.

Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 12 posts for this entry, the most recent from 16 November 2025. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Photos
1
Links
1

Lifetime counters from Telegram’s own channel header, read 14 August 2026 — not the date at the top of this page, which is when the subscriber count was last read. Below Telegram’s rounding threshold, so these counts are exact.

Recent posts

16 Nov 2025, 16:34 UTC5 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Вот как можно получить строку вида название1,id1;название2,id2 из коллекции ресурсов в Laravel с использованием Eloquent и PHP: 🧩 Пример кода Предположим, у тебя есть коллекция моделей, например Product, у которых есть поля name и id. use App\Models\Product; // Получаем коллекцию продуктов $products = Product::all(); // Преобразуем в нужную строку $result = $products->map(function ($product) { return "{$produc

7 Oct 2025, 06:01 UTC5 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Отличный вопрос — и очень практичный! В Laravel коллекциях ты можешь легко изменить только нужные поля, оставив остальные нетронутыми. Всё зависит от структуры: массивы или объекты. Вот несколько подходов: 🧱 Если элементы — массивы Используй map() и просто обновляй нужные ключи: $collection = collect([ ['id' => 1, 'name' => 'Alice', 'age' => '25'], ['id' => 2, 'name' => 'Bob', 'age' => '30'], ]); $updated

6 Oct 2025, 08:54 UTC4 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Отличный вопрос! В Laravel коллекции (Illuminate\Support\Collection) позволяют гибко обрабатывать данные, включая преобразование типов и последующую фильтрацию. Вот как можно это реализовать: 🔄 Шаг 1: Преобразование типов с map() Сначала используем метод map() для преобразования элементов коллекции в нужный тип. Например, если у вас есть строки чисел, и вы хотите фильтровать по числовым значениям: $collection = col

23 Jun 2025, 15:42 UTC6 viewsread 14 August 2026

public function setData() { $languages = ['uk', 'ru', 'en']; $docs = evo()->runSnippet('DocLister', [ 'parents' => 0, 'depth' => 10, 'showParent' => 1, 'tpl' => '', 'urlScheme' => 'full', 'api' => 1 ]); $sitemap = []; foreach ($docs as $doc) { $entry = [ 'url' => $this->in

9 Jun 2025, 10:40 UTC7 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Вот пример кода на PHP, который выполняет указанный cURL запрос: <?php $url = 'https://api-afiliates.salesdoubler.pro/promo/?page=1&size=10&lang=en&period=active'; $headers = [ 'accept: application/json', 'X-API-Key: ht5sxlcNh2AWcgIPkaoUXYLUd0M2erIO' ]; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($ch); curl_clo

8 Jun 2025, 15:57 UTC7 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Вот пример POST-запроса на PHP с заголовком X-API-Key, содержащим ключ qqqqqq: <?php $url = 'https://example.com/api/endpoint'; // Укажи нужный URL $data = array( 'param1' => 'value1', 'param2' => 'value2' ); // Преобразуем данные в JSON $jsonData = json_encode($data); // Создаем контекст HTTP-запроса $options = array( 'http' => array( 'method' => 'POST', 'header' => "Content-Type: app

8 Jun 2025, 05:55 UTC6 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

В PHP можно отправить HTTP-запрос с нужными заголовками с помощью библиотеки cURL. Вот пример: $url = "https://example.com/api"; $headers = [ "Authorization: Bearer YOUR_TOKEN", "Content-Type: application/json" ]; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, jso

8 Jun 2025, 05:22 UTC5 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Конечно! Вот пример отправки POST-запроса в PHP с передачей данных: $url = "https://example.com/api"; $data = ["name" => "Alice", "email" => "[email protected]"]; $options = [ "http" => [ "header" => "Content-Type: application/json\r\n", "method" => "POST", "content" => json_encode($data) ] ]; $context = stream_context_create($options); $response = file_get_contents($url, false, $con

19 May 2025, 05:48 UTC8 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Вот исправленный PHP-скрипт, который позволяет архивировать несколько папок, отправить ZIP-файл на почту и удалить его после отправки: <?php function zipFolders($folders, $zipPath) { $zip = new ZipArchive(); if ($zip->open($zipPath, ZipArchive::CREATE | ZipArchive::OVERWRITE) !== TRUE) { die("Ошибка при создании архива"); } foreach ($folders as $folderPath) { if (!is_dir($folderPath))

18 May 2025, 09:58 UTC8 viewsread 14 August 2026
Forwarded from @CopilotOfficialBot

Вот исправленный метод, который сначала проверяет наличие строки в массиве, затем изменяет последний символ и в конце проверяет уникальность результата: <?php function modifyStringIfExists($string, $array) { if (in_array($string, $array)) { // Получаем последний символ строки $lastChar = substr($string, -1); // Если последний символ — буква, добавляем "2" if (ctype_alpha($lastChar

22 Apr 2025, 06:23 UTC7 viewsread 14 August 2026
Forwarded from @salesdoubler_uaPhoto

⏺Увага⏺ На офері StarFin UA CPS оновлення умов кредитування: Продукт Зірковий 📌 Реальна річна ставка від 2572,74 до 3369,39 % річних. Решта умов без змін: 📌 Ставка 0,01% (знижка діє на перший платіж у разі застосування промокоду) 📌 Сума від 1 000 до 20 000 грн 📌 Строк: 120 календарних днів (з правом дострокового погашення) 📌 Попередження для користувача про наслідки 📌 Істотні характеристики послуги за посиланням

Showing the 12 most recent of 12 posts we hold for @ololoeee. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.

Forward network

Republishes

Channels on the register whose posts this channel has forwarded.

Built only from forwarded posts we have actually read, on both sides. Coverage is early and deliberately incomplete: a missing link means we have not read the post that would prove it, never that the relationship does not exist. Counts are distinct forwarded posts observed, so they only ever go up as we read more.

Cite this entry

A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 14 August 2026 — this entry's latest reading, not the date you are reading this.

“22” (@ololoeee), 2 subscribers as measured 14 August 2026. Telegram Register, tgregister.com/channel/ololoeee.

Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.