APC 関数
PHP Manual

apc_delete_file

(PECL apc >= 3.1.1)

apc_delete_fileファイルを opcode キャッシュから削除する

説明

mixed apc_delete_file ( mixed $keys )

指定したファイルを opcode キャッシュから削除します。

パラメータ

keys

削除したいファイル。文字列、文字列の配列、あるいは APCIterator オブジェクトで指定します。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。 keys が配列なら、 成功した場合は空の配列を返します。失敗した場合は失敗したファイルを含む配列を返します。

例1 apc_delete_file() の例

<?php
$filename 
'file.php';

if (
apc_compile_file($filename)) {

    if (
apc_delete_file($filename)) {
        echo 
"Successfully deleted file $filename from APC cache."PHP_EOL;
    }
}

if (
apc_compile_file($filename)) {

    if (
$good apc_delete_file(array($filename'donotexist.php'))) {
        
var_dump($good);
    }
}

$bad apc_delete_file('donotexist.php');
var_dump($bad);
?>

上の例の出力は、 たとえば以下のようになります。

Successfully deleted file file.php from APC cache.
[Mon May 24 09:30:33 2010] [apc-warning] Could not stat file donotexist.php, unable to delete from cache. in /tmp/test.php on line 13.
array(1) {
  [0]=>
  string(14) "donotexist.php"
}
[Mon May 24 09:30:33 2010] [apc-warning] Could not stat file donotexist.php, unable to delete from cache. in /tmp/test.php on line 18.
bool(false)

参考


APC 関数
PHP Manual