Class TipyInput
Represents input data
By default it is a TipyIOWrapper around $_REQUEST superglobal
class MyController extends TipyController { public function index() { $firstName = $this->in->get('first_name'); // or by shortcut $lastName = $this->in('last_name'); } }
- TipyIOWrapper
-
TipyInput
public
|
bind(),
clear(),
get(),
getAll(),
set()
|