commit | author | age
|
3e083b
|
1 |
<?php |
B |
2 |
|
|
3 |
/** |
|
4 |
* 轮播图片程序 |
|
5 |
*/ |
|
6 |
|
|
7 |
define('IN_ECS', true); |
|
8 |
define('INIT_NO_USERS', true); |
|
9 |
define('INIT_NO_SMARTY', true); |
|
10 |
|
|
11 |
require(dirname(__FILE__) . '/includes/init.php'); |
|
12 |
|
|
13 |
header('Content-Type: application/xml; charset=' . EC_CHARSET); |
|
14 |
header('Cache-Control: no-cache, must-revalidate'); |
|
15 |
header('Expires: Thu, 27 Mar 1975 07:38:00 GMT'); |
|
16 |
header('Last-Modified: ' . date('r')); |
|
17 |
header('Pragma: no-cache'); |
|
18 |
|
|
19 |
if (file_exists(ROOT_PATH . DATA_DIR . '/cycle_image.xml')) |
|
20 |
{ |
|
21 |
echo file_get_contents(ROOT_PATH . DATA_DIR . '/cycle_image.xml'); |
|
22 |
} |
|
23 |
else |
|
24 |
{ |
|
25 |
echo '<?xml version="1.0" encoding="' . EC_CHARSET . '"?><bcaster><item item_url="images/200609/05.jpg" link="" /></bcaster>'; |
|
26 |
} |
|
27 |
?> |