In one of my project's configuration settings I observed following two lines at the beginning of file :
@ini_set('memory_limit', '-1');
@set_time_limit(0);
My doubt is what's the difference in the above two lines of code and following lines of code?
ini_set('memory_limit', '-1');
set_time_limit(0);
What's the intention of prefixing @ symbol in PHP?
Please provide me in detail and to the point answer.
Thanks in advance.