次のようなサンプルを良くみかけます。
$fp = @fopen($editfile, 'w');
$fp = fopen($editfile, 'w');


fopen関数の横に「@」があると無い場合とでは動作の違いはあるのでしょうか?