fopen with/without @ before it
Posted
by brett
on Stack Overflow
See other posts from Stack Overflow
or by brett
Published on 2010-03-28T02:45:30Z
Indexed on
2010/03/28
2:53 UTC
Read the original article
Hit count: 375
I've seen code samples that use an @ before fopen as in
$fh = @fopen($myFile, 'w');
What's the significance of this @?
© Stack Overflow or respective owner