mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
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} }';
|
||
|
}
|
||
|
?>
|