Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/web/webpacker/ |
Upload File : |
<?php namespace Bitrix\Main\Web\WebPacker; use Bitrix\Main; class JsonEncoder { /** * Method-wrapper for Main\Web\Json::encode to support non-UTF8 encodings in building JS files (widgets, forms, etc) * @see c849bc06c051 revision * * @param $data * @return mixed * * @throws Main\ArgumentException */ public static function encode($data) { return Main\Web\Json::encode( $data, JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT, ); } }