Class TipyIOWrapper
Base class to wrap input/output superglobals for sanitation/validation
For example if you want extra XSS protection on input or output you may use controller's executeBefore() or executeAfter() hooks:
class MyController extends TipyController { public function executeAfter() { foreach ($this->out->getAll() as $key => $value) { $this->out->set($key, htmlspecialchars($value)); } } }
public
|
|
public
|
|
public
mixed
|
|
public
|
|
public
|
|
public
|