I've come across some PHP that triggers file_put_contents() as follows:
@file_put_contents($path_name_to_write_to, $string);
What's the significance of @ before the function call - if any? How is this different from file_put_contents($path_name_to_write_to, $string); - if at all?
Thanks.