json.php 105 B

1234567
  1. <?php
  2. echo json_encode(array(
  3. 'key1' => 'val1',
  4. 'key2' => 234,
  5. 'key3' => array(1, 2, 3)
  6. ));