1 Star 3 Fork 2

mojie126/HDCN-PT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
getextinfoajax.php 852 Bytes
一键复制 编辑 原始数据 按行查看 历史
mojie126 提交于 2014-12-31 12:16 . IMDb悬浮样式修复
<?php
require "include/bittorrent.php";
require_once ("imdb/imdb.class.php");
dbconn();
//Send some headers to keep the user's browser from caching the response.
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Content-Type: text/xml; charset=utf-8");
$imdblink = $_GET['url'];
$mode = $_GET['type'];
$cache_stamp = $_GET['cache'];
$imdb_id = parse_imdb_id($imdblink);
$Cache->new_page('imdb_id_' . $imdb_id . '_' . $mode, 1296000, true);
if (!$Cache->get_page()) {
$infoblock = getimdb($imdb_id, $cache_stamp, $mode);
if ($infoblock) {
$Cache->add_whole_row();
print($infoblock);
$Cache->end_whole_row();
$Cache->cache_page();
echo $Cache->next_row();
}
} else
echo $Cache->next_row();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mojie126/HDCN-PT.git
git@gitee.com:mojie126/HDCN-PT.git
mojie126
HDCN-PT
HDCN-PT
master

搜索帮助