Home > php教程 > PHP源码 > body text

单页美女贴图网站(自带2w图床数据)

PHP中文网
Release: 2016-05-22 18:24:56
Original
1767 people have browsed it

存为php上传到空间即可使用,免去一切维护,美女图片都是存在网上的。

<?php
$key=&#39;/key/b5udypRiZpqZyMhnmmSXw2dtyZOUmJJkmZhvlWZiaZudaJeZmZRrZsObmGmZYJc=/p/&#39;;
$web=&#39;http://api.tietuku.cn/v2/api/&#39;;
$num=$_GET[&#39;id&#39;];
$html=content($key,$web,&#39;getpiclist&#39;,$num);
show($html);

function content($key,$web,$act,$num) {
$url=$web.$act.$key.$num;
$html = file_get_contents($url); 
return $html;
}

function show($html){ 
$str=extract(json_decode($html,true));
foreach ($pic as $value) {
?>
<a href=&#39;index.php?id=<?php echo rand(1,$pages);?>&#39;><img src="<?php echo $value[&#39;linkurl&#39;];?>"/></a>
<?php
}
}
?>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!