1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
httpdebug.php
См. документацию.
1<?php
2
9
10namespace Bitrix\Main\Web;
11
13{
14 public const REQUEST_HEADERS = 0b00000001;
15 public const REQUEST_BODY = 0b00000010;
16 public const REQUEST = 0b00000011;
17 public const RESPONSE_HEADERS = 0b00000100;
18 public const RESPONSE_BODY = 0b00001000;
19 public const RESPONSE = 0b00001100;
20 public const CONNECT = 0b00010000;
21 public const DIAGNOSTICS = 0b00100000;
22 public const ALL = 0b00111111;
23 public const DEFAULT = self::CONNECT | self::REQUEST_HEADERS | self::RESPONSE_HEADERS;
24}
const REQUEST
Определения httpdebug.php:16
const CONNECT
Определения httpdebug.php:20
const RESPONSE_BODY
Определения httpdebug.php:18
const DIAGNOSTICS
Определения httpdebug.php:21
const REQUEST_BODY
Определения httpdebug.php:15
const ALL
Определения httpdebug.php:22
const RESPONSE_HEADERS
Определения httpdebug.php:17
const REQUEST_HEADERS
Определения httpdebug.php:14
const RESPONSE
Определения httpdebug.php:19
const DEFAULT
Определения httpdebug.php:23