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