International PHP Conference Munich 2025

Voting

: six plus zero?
(Example: nine)

The Note You're Voting On

chris at ocproducts dot com
8 years ago
Note that 'session_start' may overwrite your custom cache headers.
To remedy this you need to call:

session_cache_limiter('');

...after you set your custom cache headers. It will tell the PHP session code to not do any cache header changes of its own.

<< Back to user notes page

To Top