Monkuar Posted February 12, 2012 Share Posted February 12, 2012 And I fixed literally probably over couple hundrend by now, But i got like 200 more I need to fix, but is there a way so I can set a SETTINGS IN PHP.INI to make the error's come out by Lowest to highest LINE? Cuz I get error in filename.php on LINE 50 then I fix it, then the last error is like LINE 1 or line 2500..... so I have to scroll all the way up again, it get's annoying is there a way to order the error's so it's easy lowest line to highest line? Cuz I got so many to fix Ternary operator has been my best friend lately! :-* :-* Quote Link to comment https://forums.phpfreaks.com/topic/256927-i-have-so-many-unidentified-errors/ Share on other sites More sharing options...
AyKay47 Posted February 12, 2012 Share Posted February 12, 2012 its pretty sad when you have hundreds of errors to fix.. errors come in the order that the parser parses, top to bottom. Next time, prevent the errors from happening in the first place.. Quote Link to comment https://forums.phpfreaks.com/topic/256927-i-have-so-many-unidentified-errors/#findComment-1317160 Share on other sites More sharing options...
Monkuar Posted February 12, 2012 Author Share Posted February 12, 2012 its pretty sad when you have hundreds of errors to fix.. errors come in the order that the parser parses, top to bottom. Next time, prevent the errors from happening in the first place.. there just stupid unidentified error's because i never used ISSET..... bcz i thought it wouldn't matter, until I read somewhere that if you fix all the errors it does make php process faster by ms's so im down to do w/e to help it go faster Quote Link to comment https://forums.phpfreaks.com/topic/256927-i-have-so-many-unidentified-errors/#findComment-1317162 Share on other sites More sharing options...
trq Posted February 12, 2012 Share Posted February 12, 2012 there just stupid unidentified error's because i never used ISSET..... There is nothing stupid about getting an error when you try to use a variable that isn't defined. In fact it makes perfect sense that it would cause an error. What would be stupid would be if php where to simply overlook poor programming. Quote Link to comment https://forums.phpfreaks.com/topic/256927-i-have-so-many-unidentified-errors/#findComment-1317167 Share on other sites More sharing options...
Monkuar Posted February 12, 2012 Author Share Posted February 12, 2012 there just stupid unidentified error's because i never used ISSET..... There is nothing stupid about getting an error when you try to use a variable that isn't defined. In fact it makes perfect sense that it would cause an error. What would be stupid would be if php where to simply overlook poor programming. well im fixing them now.. i think i learned my mistake, i mean i am learning the hard way.. going through and fixing them... that's a good punishment imo Quote Link to comment https://forums.phpfreaks.com/topic/256927-i-have-so-many-unidentified-errors/#findComment-1317169 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.