PHPのauto_prepend_file、auto_append_file

[PHPプロ!] お手軽にページのキャッシュを行う方法

# .htaccess内に以下のような記述を加えます。
php_value auto_prepend_file /path/to/start_cache.php
php_value auto_append_file /path/tp/end_cache.php

auto_prepend_file、auto_append_fileって?

コア php.ini ディレクティブに関する説明より。

auto_prepend_file string
メインファイルの前に自動的に付加されるファイルの名前を 指定します。 このファイルは、include() 関数のコール時 と同様に読み込まれます。 このため、include_path が使用されます。
特別な値 none を指 定すると、ファイルを前に追加する機能は無効となります。

auto_append_file string
メインファイルの後に自動的に追加されるファイルの 名前を指定します。 このファイルは、include() 関数のコール時と同様に読み込まれます。 このため、include_path が使用されます。
none を値として 指定するとこの自動付加機能はオフとなります。
注意: スクリプトが exit() で終了する場合、 この自動付加機能は使用されません 。

へー。
ってか、exit() つけないほうがいいのかな。