Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Sender.php
1<?php
2
4
6
8{
9
10 public function prepareMessageBodyForSave(string $text): string
11 {
12 return Emoji::encode($text);
13 }
14
15 public function prepareMessageBodyForSend(string $text): string
16 {
17 return Emoji::decode($text);
18 }
19
20}
static encode($text)
Definition emoji.php:17
static decode($text)
Definition emoji.php:24