Zend Page Cache - PHP API

Table of Contents

PHP Functions

page_cache_disable_caching

Disables output caching for the current request. This overrides any caching settings that are configured for the current request.

Available since version 4.0

Description

void page_cache_disable_caching (void)

page_cache_disable_compression

Does not allow the cache to perform compression on the output of the current request. This overrides any compression settings that are configured for this request.

Available since version 4.0

Description

void page_cache_disable_compression (void)

page_cache_remove_cached_contents

Clears cached contents for all requests that match a specific URL or regular expression

Available since version 4.0

Description

void page_cache_remove_cached_contents (string $URL)

Parameters
URL
The URL or regular expression

page_cache_remove_all_cached_contents

Clears all cached contents

Available since version 4.0

Description

void page_cache_remove_all_cached_contents (void)