I am having trouble with unserialize method does not seem to work for my codeigniter project. What is the best method to unserialize with codeigniter php.
I get a error
A PHP Error was encountered
Severity: Notice
Message: unserialize(): Error at offset 67 of 139 bytes
Filename: extension/model_module.php
Line Number: 25
Model Function
public function getModule($module_id) {
$query = $this->db->query("SELECT * FROM `" . $this->db->dbprefix . "module` WHERE `module_id` = " . $this->db->escape($module_id) . " ");
if ($query->row()) {
return unserialize($query->row('setting'));
} else {
return array();
}
}