json_node.php 237 B

12345678910111213141516
  1. <?php
  2. //$json = file_get_contents('BaseTree.json');
  3. $json = "{\"id\":\"i=84\",\"text\":\"Root\",\"parent\":\"#\"}";
  4. $json_data = json_decode($json,true);
  5. header('Content-type: application/json');
  6. echo json_encode($json_data);
  7. ?>