faqts : Computers : Programming : Languages : PHP : kms : General

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

17 of 21 people (81%) answered Yes
Recently 8 of 10 people (80%) answered Yes

Entry

Does the PHP interpreter get invoked for every <? ?> tag set?
How many times is the PHP interpreter invoked for a page?

Jun 27th, 1999 18:21
Nathan Wallace, Brian Schaffner


You aren't "invoking" the interpreter each time you put a <? ?> in your
page. It's almost the opposite - whatever is not in between <? ?> just
gets spit back out.

So, the interpreter is only being invoked once.