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.

I am trying to use PHP to make a JSON file. Part of the code is as follow

$array = array("hello", "world");
$string='{"person": [
                     {
                      "name":'$array[0];',
                      "age":'$array[1];'
                     }
                    ]
          }';

The file created. However, $array[0] and $array[1] doesn't return the values "hello" and "world" but as $array[0] and $array[1]

Any idea?

Thanks

share|improve this question

closed as not a real question by Krister Andersson, GBD, bensiu, Explosion Pills, Ragunath Jawahar Dec 16 '12 at 16:38

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 0 down vote accepted

You did not concatenate right. Use the . to connect strings in php:

$array = array("hello", "world");
$string='{"person": [
                     {
                      "name":'.$array[0].',
                      "age":'.$array[1].'
                     }
                    ]
          }';
share|improve this answer
it works, thank you Horen – hihi Dec 16 '12 at 11:04
it does work. however (as others have stated here) you should consider using built-in functions to create JSON output – Horen Dec 16 '12 at 11:06
ok I will read more on this – hihi Dec 16 '12 at 11:10

Consider using built-in PHP function such as json_encode() and json_decode()

share|improve this answer
This should be a comment an not an answer. – Krister Andersson Dec 16 '12 at 10:59
Sorry I didn't make it clear in the first place, I did use json_encode($string) and fwrite to create the file, problem is the variable doesn't return its value. – hihi Dec 16 '12 at 11:01

There no need to make json your own. there is php function to do it as below

$data = array(
  "person"=>array(
     "name"=>"hello",
     "age"=>"world"
   )
);

echo json_encode($data);
share|improve this answer
I am very new to this, I learn it from tutorial I found somewhere on the net. Thanks for the guide, it is so much easier – hihi Dec 16 '12 at 11:30

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