14 lines
276 B
PHP
14 lines
276 B
PHP
<?php
|
|
error_reporting(0);
|
|
if ( $_REQUEST['header'] ) {
|
|
header("Content-type: application/json");
|
|
}
|
|
|
|
$json = $_REQUEST['json'];
|
|
if($json) {
|
|
echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]';
|
|
} else {
|
|
echo '{ "data": {"lang": "en", "length": 25} }';
|
|
}
|
|
?>
|