Input extension for Yii 2?

Hey guys… wondering if there is an equivalent extension of this: http://www.yiiframework.com/extension/input for Yii 2? …or is it built in as standard?

If neither then do I have to do this stuff manually?

Thanks!

You just have to define the rules in your model, which will validate all input. Yii2 provides validators for common scenarios but you can also write your own.

http://www.yiiframework.com/doc-2.0/guide-input-validation.html

Thanks, but I already have done validation, but that is different to data sanitation and what that Yii 1.1 extension does.