Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 497 → Rev 498

/trunk/services/bibliotheque/ReponseHttp.php
6,10 → 6,10
 
public function __construct() {
$this->resultatService = new ResultatService();
if ( !function_exists('json_decode') ){
if (function_exists('json_decode') == false){
require_once (dirname(__FILE__).'/JSON.php');
function json_decode($content, $assoc=false){
if ( $assoc ){
function json_decode($content, $assoc = false){
if ($assoc) {
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
} else {
$json = new Services_JSON;