- PHP
- Composer
Installing this package is very simple, first ensure you have the right PHP version and composer installed then in your terminal/(command prompt) run: composer require lablnet/input
This class use [lablnet/http-client](https://packagist.org/packages/lablnet/http-client)
library.
- Supported method get,post,put,patch,delete,files,others.
- Clean input method(clean XSS attack/sanitize input).
- Determine whether request is ajax or not.
- Restore line breaks method.
It can access the HTTP request values and return them in a more convenient way to the application. Currently it can check the input values when using the GET, POST, PUT, PATCH, DELETE, FILES etc parameters, filter the parameter values, check whether request is sent by a browser using AJAX, word wrap parameter values, check whether the request is a form submission, fix parameter value line breaks.
This class provide helpers functions for easily use of class.
You can get input by calling input
helpers or Input::input
method
require_once "../vendor/autoload.php";
$username = input('username');
//in OOP style
use Lablnet\Input;
require_once "../vendor/autoload.php";
$username = Input::input('username');
You can escape input by calling escape
helpers or Input::escape
method
require_once "../vendor/autoload.php";
$username = escape(input('username'));
//in OOP style
use Lablnet\Input;
require_once "../vendor/autoload.php";
$username = Input::clean(Input::input('username'));
You can determine current request by calling is_ajax
helpers or Input::isAjax
method
require_once "../vendor/autoload.php";
if (is_ajax('name')) {
//ajax
}
//in OOP style
use Lablnet\Input;
require_once "../vendor/autoload.php";
if (Input::isAjax('name')) {
//ajax
}
You can restore line breaks by calling restore_line_break
helpers or Input::restoreLineBreaks
method
require_once "../vendor/autoload.php";
$comment = restore_line_break(escape(input('username')));
//in OOP style
use Lablnet\Input;
require_once "../vendor/autoload.php";
$comment = Input::restoreLineBreaks(Input::clean(Input::input('username')));