How to control sequence of Filters applied to Action?

Hi, All

I’ve created a filter for my action view, which i want to apply to the action the first. How can i do this? Can you tell me where is the place i can config which filter applied the first, which the second… or is there a place to do that?

Thanks,

Larry

Filters are applied in the order they where configured.

http://www.yiiframework.com/doc/guide/1.1/en/basics.controller#filter

I see. Filters are applied in the order they configured in the array in filters() function.

Thank you, Mike!