PHP Classes

File: system/dependencies/opis/closure/functions.php

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/opis/closure/functions.php   Download  
File: system/dependencies/opis/closure/functions.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: dFramework
Framework to build PHP applications
Author: By
Last change: Mise a jour de la dependance PHP-DI

passage de la v5 de php-di à la v6
Date: 3 years ago
Size: 971 bytes
 

Contents

Class file image Download
<?php
/* ===========================================================================
 * Copyright (c) 2018-2021 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;
}