karthikeyan_coder Posted July 21, 2007 Share Posted July 21, 2007 hello, we know that @mysql_connect(); wont display errors... in the same way... i have a function call.... $con->striper(); I want to disable error for this function... How can i? Plz help me... Quote Link to comment https://forums.phpfreaks.com/topic/61123-disabling-error-reporting/ Share on other sites More sharing options...
speaker219 Posted July 21, 2007 Share Posted July 21, 2007 try $con->@striper() Quote Link to comment https://forums.phpfreaks.com/topic/61123-disabling-error-reporting/#findComment-304180 Share on other sites More sharing options...
wildteen88 Posted July 21, 2007 Share Posted July 21, 2007 You add the error suppression character at the beginning of the line: @$con->striper(); Quote Link to comment https://forums.phpfreaks.com/topic/61123-disabling-error-reporting/#findComment-304301 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.