In one of my project configuration settings, I observed the following two lines at the beginning of the file:
@ini_set('memory_limit', '-1'); @set_time_limit(0);
My doubt is, what is the difference in the two lines of code above and the following lines of code?
ini_set('memory_limit', '-1'); set_time_limit(0);
What is the @symbol prefix in PHP?
Please provide me with detailed information and answer the question.
Thanks in advance.
user4225623
source share