ACC SHELL

Path : /srv/www/vhosts/centrumlb/administrace/3rdparty/filemanager/connectors/php/inc/
File Upload :
Current File : /srv/www/vhosts/centrumlb/administrace/3rdparty/filemanager/connectors/php/inc/filemanager.inc.php

<?php
if ( !function_exists('json_decode') ) {

  function json_decode($content, $assoc=false){
    require_once 'JSON.php';
    if ( $assoc ){
      $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
    } else {
      $json = new Services_JSON;
    }
    return $json->decode($content);
  }

}

if ( !function_exists('json_encode') ) {

  function json_encode($content) {
    require_once 'JSON.php';
    $json = new Services_JSON;
    return $json->encode($content);
  }

}
?>

ACC SHELL 2018