.01
.02
.03
.04
.05
.06
.07
.08
.09
.10
.11
.12
.13
.14
.15
.16
.17
.18
.19
.20
.21
.22
.23
.24
.25
.26
.27
.28
.29
|
|
<?php
/******************************************************************************/
/* */
/* __ ____ */
/* ___ / / ___ / __/__ __ _____________ ___ */
/* / _ \/ _ \/ _ \_\ \/ _ \/ // / __/ __/ -_|_-< */
/* / .__/_//_/ .__/___/\___/\_,_/_/ \__/\__/___/ */
/* /_/ /_/ */
/* */
/* */
/******************************************************************************/
/* */
/* Titre : Impossible de recuperer le proxy du cache du serveur */
/* */
/* URL : http://www.phpsources.org/scripts239-PHP.htm */
/* Auteur : Azoui */
/* Date édition : 22 Fév 2007 */
/* */
/******************************************************************************/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date dans le passé
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); //modifié
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
?>
|