- add missing support for raw post data (HttpRequest)
[m6w6/ext-http] / docs / examples / Cached_Responses.php
1 <?php
2 HttpResponse::setCacheControl('public');
3 HttpResponse::setCache(true);
4 HttpResponse::capture();
5
6 print "This will be cached until content changes!\n";
7 print "Note that this approach will only save the clients download time.\n";
8 ?>