aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/with_fries_over_jsonp.php
blob: 456aeb3bdf235b10b03a5d98b7bb3fc272d59ac6 (plain)
1
2
3
4
5
6
7
<?php
error_reporting(0);
$callback = $_REQUEST['callback'];
$json = $_REQUEST['json'];
$text = json_encode(file_get_contents(dirname(__FILE__)."/with_fries.xml"));
echo "$callback($text)";
?>