|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-09-22 17:10 UTC] johannes@php.net
[2006-09-23 18:20 UTC] tsdreddy at gmail dot com
[2006-09-25 07:08 UTC] tony2001@php.net
[2006-09-25 07:20 UTC] tsdreddy at gmail dot com
[2006-09-25 07:23 UTC] tony2001@php.net
[2006-09-25 07:34 UTC] tsdreddy at gmail dot com
[2006-09-25 07:42 UTC] tony2001@php.net
[2006-09-25 07:46 UTC] tsdreddy at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 21:00:01 2025 UTC |
Description: ------------ Hi i am using php4.4.4/windows2003/64-bit os. i am getting unserialize() error. the sam program and database is working fine in my old 32-bit system. Pl. help me regarding this thanks reddy Reproduce code: --------------- if (!$perms) { if ($group != -1) { $data = $this->db->fetch("SELECT group_perms FROM {$this->pre}groups WHERE group_id={$group}"); $perms = $data['group_perms']; } else { $data = $this->db->fetch("SELECT user_perms, user_group FROM {$this->pre}users WHERE user_id={$user}"); $perms = $data['user_perms']; $group = $data['user_group']; } } $this->cube = unserialize($perms); if (!$this->cube) { $this->cube = $this->standard; }