All,
What is the signification of the '@' symbol in PHP? For example, what does it mean in this statement:
$sd = (@$argv[1]) ? getdate(strtotime($argv[1])) : getdate();
I understand the ternary operator '?', but I have no idea what the '@' means...
The code is sample code from the (very good!) cs75.net Harvard extension course.
Thanks,
JDelage