Sanjib Sinha Posted December 19, 2008 Share Posted December 19, 2008 I would like to know the role of server in executing php script. Does it do the same job that a compiler does in C language? Quote Link to comment https://forums.phpfreaks.com/topic/137642-php-question/ Share on other sites More sharing options...
Philip Posted December 19, 2008 Share Posted December 19, 2008 Pretty much. Actually PHP is/was written in C - so you'll notice a lot of similarities Quote Link to comment https://forums.phpfreaks.com/topic/137642-php-question/#findComment-719436 Share on other sites More sharing options...
RussellReal Posted December 19, 2008 Share Posted December 19, 2008 it doesn't actually COMPILE it.. what it does is EXECUTE the PHP, then sends whatever PHP says to send, to the client like <? echo "hi"; ?> php will evaluate the PHP tag <? ... ?> php will then go over the commands it encounters echo "hi"; echo "hi"; just basically means "output: hi" so thats the end, then php sends the OUTPUT to the client then the client gets the data, lables it HTML (in most cases, unless specified otherwise) then renders it.. it is only run once, and you cannot run it again after php has finished executing for that request Quote Link to comment https://forums.phpfreaks.com/topic/137642-php-question/#findComment-719636 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.