Norman 4 Posted September 9, 2007 Author Report Share Posted September 9, 2007 'Parse engine'. I don't know how to translate this in italian language. Can you help me? Quote Link to post Share on other sites
justsomeguy 1,135 Posted September 10, 2007 Report Share Posted September 10, 2007 A parsing engine reads through something, like source code, and breaks it up (parses it) into pieces or keywords, called tokens. The parsing engine for PHP parses up PHP code into tokens like variable names, constants, functions, operators, etc before it runs the code. If the parsing engine finds a problem where it can't tell if something is a variable or a string or whatever, or it sees something that it's not expecting, like two strings together without an operator between them, then it will cause a syntax error. A parse error or a syntax error means that the parser could not determine what the code means. Quote Link to post Share on other sites
Synook 47 Posted September 10, 2007 Report Share Posted September 10, 2007 So you could call it a "code interpreting module" Quote Link to post Share on other sites
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.