123456789101112131415161718192021 |
- <?php
- //
- // JSON Encoding Test
- //
- function json() {
- // Set content type
- header("Content-type: application/json");
- // Create an array with the response string.
- $arr = array(
- "message" => "Hello, World!"
- );
- // Use the PHP standard JSON encoder.
- // http://www.php.net/manual/en/function.json-encode.php
- echo json_encode($arr);
- }
- json();
- ?>
|