The correct answer to your question is: use a different error setting on your site.
You can do that in one of 3 ways.
Change the php.ini file, if you have the right to.
error_reporting = E_ERROR
display_errors = Off
Add an .htaccess file to the root directory of your site
You also have to have the right to do this.
Add the following lines:
php_flag display_errors off
php_value error_reporting E_ERROR
Execute the following statements in the beginning of your script
error_reporting(E_ERROR);
ini_set("display_errors","Off");
Ancak, verilen diğer yanıtlar ile elbirliği içinde, hatalar are hataları almak ve bunları gidermek gerekir. Eğer geliştirme ortamı hataları göstermek ve üretim ortamında onları bastırmak ve oturum açmak istediğiniz çoğu zaman. Ama her zaman bunları çözmek istiyoruz.
Hataları hakkında daha fazla bilgi için PHP manual göz atın.