mirror of
				https://gitee.com/zoujingli/ThinkAdmin.git
				synced 2025-11-04 21:52:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			971 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			971 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* ===========================================================================
 | 
						|
 * Copyright (c) 2018-2019 Zindex Software
 | 
						|
 *
 | 
						|
 * Licensed under the MIT License
 | 
						|
 * =========================================================================== */
 | 
						|
 | 
						|
namespace Opis\Closure;
 | 
						|
 | 
						|
/**
 | 
						|
 * Serialize
 | 
						|
 *
 | 
						|
 * @param mixed $data
 | 
						|
 * @return string
 | 
						|
 */
 | 
						|
function serialize($data)
 | 
						|
{
 | 
						|
    SerializableClosure::enterContext();
 | 
						|
    SerializableClosure::wrapClosures($data);
 | 
						|
    $data = \serialize($data);
 | 
						|
    SerializableClosure::exitContext();
 | 
						|
    return $data;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Unserialize
 | 
						|
 *
 | 
						|
 * @param string $data
 | 
						|
 * @param array|null $options
 | 
						|
 * @return mixed
 | 
						|
 */
 | 
						|
function unserialize($data, array $options = null)
 | 
						|
{
 | 
						|
    SerializableClosure::enterContext();
 | 
						|
    $data = ($options === null || \PHP_MAJOR_VERSION < 7)
 | 
						|
        ? \unserialize($data)
 | 
						|
        : \unserialize($data, $options);
 | 
						|
    SerializableClosure::unwrapClosures($data);
 | 
						|
    SerializableClosure::exitContext();
 | 
						|
    return $data;
 | 
						|
}
 |