- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
//Serialize
if(is_numeric($value) || is_string($value))
return $value;
else
return serialize($value);
//Unserialize
if(is_numeric($value))
return $value;
if(preg_match('/(a|O|s|b)\x3a[0-9]*?((\x3a((\x7b?(.+)\x7d)|(\x22(.+)\x22\x3b)))|(\x3b))/', $value)
return unserialize($value);
Анонимус 18.01.2011 22:36 # 0
Lure Of Chaos 18.01.2011 22:38 # 0
istem 18.01.2011 23:13 # 0
Анонимус 19.01.2011 04:13 # +8
bGczbZF 25.08.2021 01:26 # 0