解决php 反序列化返回false
程序员文章站
2024-01-01 22:06:40
php 反序列化返回false解决方法
function mb_unserialize($serial_str) {
$serial_str= preg_replace(...
php 反序列化返回false解决方法
function mb_unserialize($serial_str) {$serial_str= preg_replace('!s:(\d+):"(.*?)";!se', "'s:'.strlen('$2').':\"$2\";'", $serial_str );
$serial_str= str_replace("\r", "", $serial_str);
}
推荐阅读