I have a class Block_Model (actually a model in Kohana framework) with 2 methods input()and output().
Block_Model
input()
output()
class Block_Model e
You'll need private property:
class Something{ private $_variable = ""; function input( $data ){ $this->_variable = $data; //do the rest of function } function output( ){ //get previously set data echo $this->_variable; } }