aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/jsonp.php
blob: 9ae1d84872bca498040b2e71ad157bcf475fc2fd (plain)
1
2
3
4
5
6
7
8
9
10
<?php
error_reporting(0);
$callback = $_REQUEST['callback'];
$json = $_REQUEST['json'];
if($json) {
	echo $callback . '([ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ])';
} else {
	echo $callback . '({ "data": {"lang": "en", "length": 25} })';
}
?>