with_fries_over_jsonp.php 193 字节 原文件 审查 历史 永久链接 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)"; ?>