Problème avec json_decode
Posté : 18 avr. 2011, 23:52
Bonjour,
J'ai une problème pour lire mon fichier json
Je reçois cette erreur :
Catchable fatal error: Object of class stdClass could not be converted to string in /var/www/json-test.php on line 4
et voici mon code php
Pouvez-vous me dire comment je peux résoudre cette erreur
Merci
J'ai une problème pour lire mon fichier json
Je reçois cette erreur :
Catchable fatal error: Object of class stdClass could not be converted to string in /var/www/json-test.php on line 4
et voici mon code php
Code : Tout sélectionner
<?php
$json = 'json.json';
$file = file_get_contents($json);
echo json_decode($file);
Merci