blob: 1307ca0c61a1414f6678da82641f1d66bdbcc548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
#====================================================================================================
# Cache deaktivieren
#====================================================================================================
header('Cache-Control: no-cache, no-store, must-revalidate');
#====================================================================================================
# Content-Type setzen
#====================================================================================================
header('Content-Type: text/javascript');
#====================================================================================================
# Lange Ladezeit simulieren
#====================================================================================================
usleep(intval(rand(10, 40).'0000'));
?>
|