"@" in front of a function
Posted: Mon Jan 08, 2007 4:53 pm
What does the "@" sign do in front of a function?
What's the difference between @unlink and unlink?
What's the difference between @unlink and unlink?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
if (file_exists($fileame) && is_writable($filename)) {
unlink($filename);
}