coding scan program?

nightscream

New Member
Messages
948
Reaction score
0
Points
0
hello i'm searching for a program that search into codes
and look for errors and tell on what line they are and such
codes i mean php, c++, vb, ...
like this should be a variable
PHP:
money
then it will say that on line 1 there is an error
so you know where your coding error is that you don't have to look into whole the code
if someone don't know the error it should be
PHP:
$money
 

Cynical

Active Member
Messages
3,492
Reaction score
0
Points
36
If you are using PHP, you can just test the page and an error message will be displayed if there is an error with your code. As for other languages, you'd probably need to download the compiler for that language and use the debug function in it. I've never seen a program that debugs multiple languages but one might exist.
 

Bryon

I Fix Things
Messages
8,149
Reaction score
101
Points
48
PHP's error reporting will almost always tell you the exact error occuring, if there is one. You can always

I know there are some "programming IDE"'s that can tell you for PHP, but I'm not sure how well they work.

Php_check_syntax() is a PHP fucntion to check then execute php code, if maybe that is what your looking for? Not sure..
 
Top