Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-serializer/src/Adapter/IgBinary.php
Строк: 104
<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace ZendSerializerAdapter;

use 
ZendSerializerException;
use 
ZendStdlibErrorHandler;

class 
IgBinary extends AbstractAdapter
{
    
/**
     * @var string Serialized null value
     */
    
private static $serializedNull null;

    
/**
     * Constructor
     *
     * @throws ExceptionExtensionNotLoadedException If igbinary extension is not present
     */
    
public function __construct($options null)
    {
        if (!
extension_loaded('igbinary')) {
            throw new 
ExceptionExtensionNotLoadedException(
                
'PHP extension "igbinary" is required for this adapter'
            
);
        }

        if (static::
$serializedNull === null) {
            static::
$serializedNull igbinary_serialize(null);
        }

        
parent::__construct($options);
    }

    
/**
     * Serialize PHP value to igbinary
     *
     * @param  mixed $value
     * @return string
     * @throws ExceptionRuntimeException on igbinary error
     */
    
public function serialize($value)
    {
        
ErrorHandler::start();
        
$ret igbinary_serialize($value);
        
$err ErrorHandler::stop();

        if (
$ret === false) {
            throw new 
ExceptionRuntimeException('Serialization failed'0$err);
        }

        return 
$ret;
    }

    
/**
     * Deserialize igbinary string to PHP value
     *
     * @param  string $serialized
     * @return mixed
     * @throws ExceptionRuntimeException on igbinary error
     */
    
public function unserialize($serialized)
    {
        if (
$serialized === static::$serializedNull) {
            return 
null;
        }

        
ErrorHandler::start();
        
$ret igbinary_unserialize($serialized);
        
$err ErrorHandler::stop();

        if (
$ret === null) {
            throw new 
ExceptionRuntimeException('Unserialization failed'0$err);
        }

        return 
$ret;
    }
}
Онлайн: 0
Реклама