physaux Posted November 3, 2009 Share Posted November 3, 2009 None of the seaches are letting me search for it, not even in ""... Could somebody please tell me what the "@" symbol does? I have seen it used as such: <?php $fp = @fopen($cachefile, 'w'); echo $cachefile; // save the contents of output buffer to the file @fwrite($fp, ob_get_contents()); @fclose($fp); ob_end_flush(); ?> Link to comment https://forums.phpfreaks.com/topic/180161-solved-what-does-do-google-search-not-helping-me-d/ Share on other sites More sharing options...
marcus Posted November 3, 2009 Share Posted November 3, 2009 It suppresses errors. Link to comment https://forums.phpfreaks.com/topic/180161-solved-what-does-do-google-search-not-helping-me-d/#findComment-950405 Share on other sites More sharing options...
physaux Posted November 3, 2009 Author Share Posted November 3, 2009 thanks Link to comment https://forums.phpfreaks.com/topic/180161-solved-what-does-do-google-search-not-helping-me-d/#findComment-950406 Share on other sites More sharing options...
Mchl Posted November 3, 2009 Share Posted November 3, 2009 It suppresses error messages. Error are still there. Link to comment https://forums.phpfreaks.com/topic/180161-solved-what-does-do-google-search-not-helping-me-d/#findComment-950409 Share on other sites More sharing options...
salathe Posted November 3, 2009 Share Posted November 3, 2009 The relevant page in the manual is: http://php.net/operators.errorcontrol Link to comment https://forums.phpfreaks.com/topic/180161-solved-what-does-do-google-search-not-helping-me-d/#findComment-950505 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.