In-Portal Developers Guide

This is a wiki-based Developers Guide for In-Portal Open Source CMS. The purpose of this guide is to provide advanced users, web developers and programmers with documentation on how to expand, customize and improve the functionality and the code the In-Portal software. Please consider contributing to our documentation writing effort.

K4:KHTTPQuery

From In-Portal Developers Guide

Jump to: navigation, search
m (1 версия)
Line 4: Line 4:
[[Image:Http_query.gif|left|frame|none|Содержание реестра kHTTPQuery]]
[[Image:Http_query.gif|left|frame|none|Содержание реестра kHTTPQuery]]
|
|
-
Класс '''kHTTPQuery''' используется в К4 для предварительной обработки и последующего безопасного использования следующих типов данных:
+
The '''kHTTPQuery''' class is used in K4 for pre-proccessing and then to safely use the following types of data:
-
* данные, которые пользователь передал скрипту
+
* data that a user passed to a script
-
* данные из разобранной [[K4:Environment|переменной окружения]]
+
* data pulled from the [[K4:Environment|Environment variable]]
-
* данные пользовательских переменных (наподобие массива [http://lv2.php.net/manual/ru/reserved.variables.php#reserved.variables.globals $_GLOBALS])
+
* data from user variables (similar to array [http://lv2.php.net/manual/ru/reserved.variables.php#reserved.variables.globals $_GLOBALS])
-
Под понятием данных пользователя подразумевается содержание следующих, встроенных в php, массивов:
+
As far as user data, we're referring to the content of the following built in PHP arrays:
-
# '''$_COOKIE''' - cookies, которые хранятся на компьютере клиента
+
# '''$_COOKIE''' - cookies, that are stored on the user's computer
-
# '''$_GET''' - параметры из адресной строки интернет обозревателя
+
# '''$_GET''' - parameters passed in the address bar of the internet browser
-
# '''$_POST''' - значения полей из формы
+
# '''$_POST''' - values of the fields in a form
-
# '''$_FILES''' - файлы закачанные из формы
+
# '''$_FILES''' - files uploaded through a form
-
{{TipBox|Массивы перечислены в порядке их добавления в реестр переменных доступный посредством данного класса.}}
+
{{TipBox|Arrays are listed in the order in which they were added to the variables register through this class.}}
-
Также доступны массивы $_ENV и $_SERVER, но на данный момент их использование не представляет никакого интереса для K4.
+
Also available are arrays $_ENV и $_SERVER, but right now they're not used in K4.
|}
|}
-
== Переданные пользователем данные (из обозревателя интернета) ==
+
== Data Passed by the User (From the Browser) ==
К данному типу данных можно отнести все переменные полученные из встроенных массивов php. На приведённом изображении это будут переменные со следующими именами:
К данному типу данных можно отнести все переменные полученные из встроенных массивов php. На приведённом изображении это будут переменные со следующими именами:

Revision as of 19:48, 2 April 2009

Системные классы Системные классы
Статьи в этой категории
Содержание реестра kHTTPQuery
Содержание реестра kHTTPQuery

The kHTTPQuery class is used in K4 for pre-proccessing and then to safely use the following types of data:

As far as user data, we're referring to the content of the following built in PHP arrays:

  1. $_COOKIE - cookies, that are stored on the user's computer
  2. $_GET - parameters passed in the address bar of the internet browser
  3. $_POST - values of the fields in a form
  4. $_FILES - files uploaded through a form
Image:Tipbox Icon.gif Arrays are listed in the order in which they were added to the variables register through this class.

Also available are arrays $_ENV и $_SERVER, but right now they're not used in K4.

Data Passed by the User (From the Browser)

К данному типу данных можно отнести все переменные полученные из встроенных массивов php. На приведённом изображении это будут переменные со следующими именами:

  • из массива $_COOKIE
TreeExpandStatus, cookies_on, catalog_active_prefix, adm_sid, __qca
  • из массива $_GET
env

Пользовательские переменные (установленные из K4)

module, section

Разобранная переменная окружения

В данном примере все ранее не описанные переменные получены в результате обработки переменной окружения. Эти переменные легко определить, т.к. в их имени будет символ подчёркивания ("_").