Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
json_encode is returning NULL?

I'm trying to read JSON data from my text file 'signups.txt' and I'm using the following below. I want to grab the data from my text file and output the data in a foreach loop. Here's my code so far, I'm not 100% sure how to go about it.

$json_data = json_decode(file_get_contents('includes/signups.txt'), true);

My data:

{"name":"John Smith","studentid":"10358595","fbid":"1284556651"}

I'm thinking the following:

  • Get file data as a string Encode into JSON maybe?

  • Put the JSON data into an array using 'true'

  • And then decode so that I can use the data

Sorry for been so vague but I can't seem to find what I'm looking for online. I apologise if the post is too brief. I'll do my best to add anything that I might have missed out. Thanks.

Edit: In terms of my current code, I just get null when I var_dump it.

share|improve this question
What is wrong with your current code ? The code works wrong ad returns $json_data as array ??? – Baba Oct 25 '12 at 1:01
Just updated my situation, if I var dump what I currently have it just shows null. – Xiy Oct 25 '12 at 1:06
try echo '<pre>';print_r($json_data);echo '</pre>'; it gives Array ( [name] => John Smith [studentid] => 10358595 [fbid] => 1284556651 ) here – davidkonrad Oct 25 '12 at 1:07
You can not get null .. var_dump($json_data) just have your code ... whats is the output ? – Baba Oct 25 '12 at 1:08
I just seem to get: <pre></pre> – Xiy Oct 25 '12 at 1:08
show 9 more comments

marked as duplicate by hakre, SomeKittens, bensiu, ghoti, newfurniturey Oct 25 '12 at 4:01

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

From your Script http://pastebin.com/auGi421u

It shows you are having errors reading file but you don't know because you are outputting print_r($json_data); instead of print_r($json_output)

You can try this

error_reporting(E_ALL);
ini_set("display_errors", "On");

$file = 'log.txt';

if (!is_file($file) xor !is_readable($file)) {
    trigger_error("File Not readable");
}

$data = file_get_contents($file);
$data = json_decode($data, true);
var_dump($data);
share|improve this answer
I still seem to be getting the same problem. I just get NULL - using your code. – Xiy Oct 25 '12 at 1:38
How big is the file ? – Baba Oct 25 '12 at 1:39
The file is 2KB. – Xiy Oct 25 '12 at 1:41
Whhat about the updated code – Baba Oct 25 '12 at 1:46
5KB. I can't seem to figure it out, I'll try again in the morning, maybe I can get it working with a fresh mind. – Xiy Oct 25 '12 at 1:49

Not the answer you're looking for? Browse other questions tagged or ask your own question.