PHP 一言接口调用及样式展示
<!DOCTYPE html>
<html>
<head>
<title>一言接口</title>
<style type="text/css">
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
margin-top: 50px;
font-size: 36px;
color: #333333;
}
p {
margin-top: 20px;
font-size: 24px;
color: #666666;
text-align: center;
line-height: 1.5em;
}
</style>
</head>
<body>
<h1>一言接口</h1>
<p><?php
$url = 'https://v.api.aa1.cn/api/yiyan/index.php';
$data = file_get_contents($url);
echo $data;
?></p>
</body>
</html>
原文地址: http://www.cveoy.top/t/topic/l44K 著作权归作者所有。请勿转载和采集!