azi/input

OO way to interact with user input

Maintainers

Package info

github.com/azeemhassni/Input

pkg:composer/azi/input

Statistics

Installs: 58

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 0

0.1 2015-08-20 14:56 UTC

This package is auto-updated.

Last update: 2026-02-25 13:40:45 UTC


README

OO way to interact with user input

use Azi\Input;

$input = Input::all();

$name = Input::post('name');
$search = Input::get('search');

$email = Input::request('email'); 

if(Input::exists('email)){
  // send an email to user
}