Files
QuickAPI/api/bing/index.php
muzihuaner 504b7c9921 更新
2026-03-18 11:02:06 +08:00

29 lines
768 B
PHP

<?php
$file = 'counter.dat';
// 读取并自增
$counter = (int)@file_get_contents($file);
$counter++;
// 使用 LOCK_EX 防止并发写入冲突
file_put_contents($file, $counter, LOCK_EX);
header('Access-Control-Allow-Origin:*');
$str = file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1');
if ($str === false) {
exit('Failed to retrieve data from Bing');
}
$xml = simplexml_load_string($str);
if ($xml && isset($xml->image->url)) {
$imgurl = 'http://cn.bing.com' . $xml->image->url;
}
if(isset($imgurl) && $imgurl){
header('Content-Type: image/JPEG');
ob_end_clean();
readfile($imgurl);
flush(); ob_flush();
exit();
}else{
exit('error');
}
?>