「PHP Programming/Files」の版間の差分
ナビゲーションに移動
検索に移動
M
→Error Checking
M (→Error Checking) |
M (→Error Checking) |
||
$Handle = @ fopen('data.txt', 'r');
if(!$Handle) {
echo 'PHP does not have permission to read this file
in question doesn't exist.';
} else {
$String = fread($Handle, 64);
|