blob: b4af48d64a73834b0daa58ac0a3884720ee18ad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
#===============================================================================
# Disable cache
#===============================================================================
header('Cache-Control: no-cache, no-store, must-revalidate');
#===============================================================================
# Set Content-Type
#===============================================================================
header('Content-Type: text/javascript');
#===============================================================================
# Simulate long loading time
#===============================================================================
usleep(intval(rand(10, 40).'0000'));
?>
console.log("EXTERNAL: Delayed javascript resource loaded");
|