Example #1
0
 public function __construct($filename)
 {
     parent::__construct();
     $this->_str = file_get_contents($filename);
     if (false === $this->_str) {
         return false;
     }
     $this->_pos = 0;
 }
 function __construct($filename)
 {
     parent::__construct();
     $this->_str = file_get_contents($filename);
     if (FALSE === $this->_str) {
         return FALSE;
     }
     $this->_pos = 0;
 }