vote up 2 vote down star

Dear All

I have a PHP file going to write a two-dimensional array in javascript:

<?php

      print "<script language='javascript'>";
      print " extra[0][0]=new Array(1,'Bob',12);"; 
      print " extra[0][1]=new Array(2,'Alice',18);"; 
       ..
      //  need to assign the extra[1][0],extra[1][1] so on.
      print "</script>";    

 ?>

Mu.js:

  var extra=new Array();
  ...

Any suggestion to assign the two-dimensional array from PHP to a javascript variable?

flag

78% accept rate

1 Answer

vote up 7 vote down

json_encode is your friend: json_encode in the PHP manual


<script type="text/javascript">
  var jsArray = <?= json_encode($my_array) ?>;
</script>

link|flag
I have encoded in PHP, I unable to decode in javascript ,could u please suggest an example? – venkatachalam Jan 17 at 10:39
Just build the array in PHP as you want it to look in Javascript, and then pass that array to json_encode. – wvanbergen Jan 17 at 11:15

Your Answer

Get an OpenID
or

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