Cache-anje ne dela

Uporabim spodnjo kodo...

<?php
    ob_start();
?>

PHP / HTML vsebina

<?php
$cachefile = "../cache/stran.html";
$ft = fopen($cachefile, 'w');
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
?>

Stran.html se ustvari, vendar je vsebina prazna. Testiram na WAMPSERVER 2.0, PHP 5.2.9-2. (default nastavitve)

Hvala za pomoč

2 odgovora

<?php
$cachefile = "../cache/stran.html";
$ft = fopen($cachefile, 'w');
fwrite($fp, obgetcontents());
fclose($fp);
obendflush();
?>

Popravi $ft v $fp

2

Odlično! Zdaj dela. :) Hvala ti.