Files
ClassContent/历届学生/陈一航/项目/今日头条/news.php
2024-09-27 02:06:13 +08:00

8 lines
212 B
PHP

<?php
header("Access-Control-Allow-Origin: *");
$type = $_GET["type"];
$url = "http://v.juhe.cn/toutiao/index?type=".$type."&key=ae8dd0002b4d7df3f68d6c7de40d322e";
$data = file_get_contents($url);
echo $data;
?>