<?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");