forked from unpush/p2-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhissi.php
executable file
·47 lines (40 loc) · 1.15 KB
/
hissi.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/*
必死チェッカーにURLを渡す。
引数:
host:$hostを渡す (任意)
bbs:$bbsを渡す
date:yyyymmdd形式で日付を渡す
id:IDを渡す
img:何か含まれていれば画像を表示
使用例:
置換日付で
Match=(.*?(\d{4})/(\d{2})/(\d{2}).*)
Replace=$1<a href="hissi.php?bbs=$bbs&date=$2$3$4&id=$id" target="_blank"><img src="hissi.php?img=1&bbs=$bbs" height=12px></a>
とすれば、必死チェッカーに対応してる板では画像が表示され、そうでない板では表示されない。
*/
include_once './conf/conf.inc.php';
$_login->authorize(); //ユーザ認証
require_once './plugin/hissi/hissi.class.php';
$hissi = new hissi();
$hissi->host = $_GET['host'];
$hissi->bbs = $_GET['bbs'];
// 画像を表示する場合
if ($_GET['img']) {
if ($hissi->isEnable()) {
header("Content-Type: image/png");
readfile('./plugin/hissi/hissi.png');
} else {
header("Content-Type: image/gif");
readfile('./img/spacer.gif');
}
exit;
} else {
if ($hissi->isEnable()) {
$hissi->date = $_GET['date'];
$hissi->id = $_GET['id'];
header('Location: ' . P2Util::throughIme($hissi->getIDURL()));
} else {
P2Util::printSimpleHtml('この板は対応していません。');
}
}