How do you pass a variable from the controller to an action and from one action to another in Yii?

I need to pass a variable from the controller to an action and then keep passing the same variable to other action inside the controller. I don’t want to use the session though. What’s the best way to achieve this?

public $variable;

$this->actionOther($variable);