class Contr_ajax extends Controller{
function __construct()
{
parent::__construct();
}
public function getCities()
{
$cityName = Input::get('cityName');
}
}
Можно в классе Input держать кэш обработанных переменных
class Input
{
static protected $getCache = [];
public static function get($var)
{
if(isset(self::$getCache[$var]))
return self::$getCache[$var];
if (!isset($_GET[$var]))
return FAlSE;
self::$getCache = htmlspecialchars($_GET[$var]);
return self::$getCache[$var];
}
}
Можно в классе Input держать кэш обработанных переменных