Download the PHP package infrajs/ans without Composer
On this page you can find all versions of the php package infrajs/ans. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package ans
Short Description Standart json-answer for php handlers
License
Homepage https://github.com/infrajs/ans
Informations about the package ans
API for json-answer PHP-scripts
An easy way to work with the parameters of the GET. API to return the result of the script - the success or error.
Ans::ans - Is used to output data in json format.
Ans::ans([array $ans])
Ans::err - Is used to display an error message $msg and data $ans in json format.
Ans::err([array $ans [, string $msg]])
Ans::log - Is used to display an error message $msg and data $ans in json format. Write down all the error in log stating name of the file in which the error occurred. If you have $msg, he is substituted in the end of the name
Ans::log([array $ans [, string $msg [, mixed $data [, bool $debug]]]])
Ans::ret - Is used to output data in json format, this adds to the array $msg with the passed argument.
Ans::ret([array $ans [, string $msg]])
Ans::txt - Used to display text
Ans::txt(string $ans)
Ans::GET - If the url passed to the request parameter name equal to $name, then this method will return the value of this parameter and if the provided type is $type, then the variable contained in $_GET[$name] will be assigned the new type.
Ans::GET(string $name [, string $type [, $def = null]])
Ans::ans - Используется для вывода данных в формате json.
Ans::ans([array $ans])
Ans::err - Используется для вывода ошибки с сообщением $msg и данными $ans в формате json.
Ans::err([array $ans [, string $msg]])
Ans::log - Используется для вывода ошибки с сообщением $msg и данными $ans в формате json, при этом записыват ошибку в log с указанием имени файла в котором произошла ошибка и в конце имени файла подставляет $msg, если имеется.
Ans::log([array $ans [, string $msg [, mixed $data [, bool $debug]]]])
Ans::ret - Используется для вывода данных в формате json, при этом добавляется в массив $msg с переданным аргументом.
Ans::ret([array $ans [, string $msg]])
Ans::txt - Используется для вывода текста
Ans::txt(string $ans)
Ans::GET - Если в url запросе передано имя параметра равное $name, то данный метод вернет значение этого параметра и если передан тип $type, то переменной, которая содержится в $_GET[$name] будет присвоен новый тип
Ans::GET(string $name [, string $type [, $def = null]])