file(): read of 8192 bytes failed with errno=21 Is a directory
file(): read of 8192 bytes failed with errno=21 Is a directory
Noticeエラーですが、上記のようなエラーが出た。
パッと見、1ファイルの容量が大きいのかな?と思ったけど、Is a directoryと書いてあるので、単純にファイルではなくディレクトリをfile関数で読み込もうとしただけのエラーでした。
1 |
$file = file( $line ); |
↓
1 2 3 4 |
if ( is_file( $line ) ) { $file = file( $line ); } |
これでエラーは出なくなりました。
この投稿へのトラックバック
トラックバックはありません。
- トラックバック URL
この投稿へのコメント