Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-serializer/src/Adapter/Json.php
Строк: 146
<?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 
ZendJsonJson as ZendJson;
use 
ZendSerializerException;

class 
Json extends AbstractAdapter
{
    
/**
     * @var JsonOptions
     */
    
protected $options null;

    
/**
     * Set options
     *
     * @param  array|Traversable|JsonOptions $options
     * @return Json
     */
    
public function setOptions($options)
    {
        if (!
$options instanceof JsonOptions) {
            
$options = new JsonOptions($options);
        }

        
$this->options $options;
        return 
$this;
    }

    
/**
     * Get options
     *
     * @return JsonOptions
     */
    
public function getOptions()
    {
        if (
$this->options === null) {
            
$this->options = new JsonOptions();
        }
        return 
$this->options;
    }

    
/**
     * Serialize PHP value to JSON
     *
     * @param  mixed $value
     * @return string
     * @throws ExceptionInvalidArgumentException
     * @throws ExceptionRuntimeException
     */
    
public function serialize($value)
    {
        
$options    $this->getOptions();
        
$cycleCheck $options->getCycleCheck();
        
$opts = array(
            
'enableJsonExprFinder' => $options->getEnableJsonExprFinder(),
            
'objectDecodeType'     => $options->getObjectDecodeType(),
        );

        try {
            return 
ZendJson::encode($value$cycleCheck$opts);
        } catch (
InvalidArgumentException $e) {
            throw new 
ExceptionInvalidArgumentException('Serialization failed: ' $e->getMessage(), 0$e);
        } catch (
Exception $e) {
            throw new 
ExceptionRuntimeException('Serialization failed: ' $e->getMessage(), 0$e);
        }
    }

    
/**
     * Deserialize JSON to PHP value
     *
     * @param  string $json
     * @return mixed
     * @throws ExceptionInvalidArgumentException
     * @throws ExceptionRuntimeException
     */
    
public function unserialize($json)
    {
        try {
            
$ret ZendJson::decode($json$this->getOptions()->getObjectDecodeType());
        } catch (
InvalidArgumentException $e) {
            throw new 
ExceptionInvalidArgumentException('Unserialization failed: ' $e->getMessage(), 0$e);
        } catch (
Exception $e) {
            throw new 
ExceptionRuntimeException('Unserialization failed: ' $e->getMessage(), 0$e);
        }

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