更新代码
This commit is contained in:
38
vendor/opis/closure/functions.php
vendored
Normal file
38
vendor/opis/closure/functions.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
namespace Opis\Closure;
|
||||
|
||||
/**
|
||||
* Serialize
|
||||
*
|
||||
* @param $data
|
||||
* @return string
|
||||
*/
|
||||
function serialize($data)
|
||||
{
|
||||
SerializableClosure::enterContext();
|
||||
SerializableClosure::wrapClosures($data);
|
||||
$data = \serialize($data);
|
||||
SerializableClosure::exitContext();
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Unserialize
|
||||
*
|
||||
* @param $data
|
||||
* @return mixed
|
||||
*/
|
||||
function unserialize($data)
|
||||
{
|
||||
SerializableClosure::enterContext();
|
||||
$data = \unserialize($data);
|
||||
SerializableClosure::unwrapClosures($data);
|
||||
SerializableClosure::exitContext();
|
||||
return $data;
|
||||
}
|
||||
Reference in New Issue
Block a user