File::unlock()
File::unlock() -- unlocks a locked file pointer
Synopsis
mixed File::unlock (string $filename, string $mode)
Hinweise
Diese Methode kann statisch
aufgerufen werden.
Beispiel
Beispiel 44-1. Using File::unlock()
<?php
require_once 'File.php';
$e = File::unlock('test.txt');
if (PEAR::isError($e)) {
echo 'Could not unlock the file : ' . $e->getMessage();
} else {
echo "Successfully unlocked the file test.txt\n";
}
?>
|
|