Re: How do we manage large code sets in PHP? [message #169665 is a reply to message #169657] |
Wed, 22 September 2010 07:42 |
alvaro.NOSPAMTHANX
Messages: 277 Registered: September 2010
Karma:
|
Senior Member |
|
|
El 22/09/2010 1:07, Michael escribió/wrote:
> In C/C++ we create manageable files and compile/link them together
> into a single executable. What do we do in PHP?
Sorry, but this is a really weird question. If you don't even know that
PHP is not a compiled language, I'm not sure about what you expect to
learn about large code sets handling.
Whatever, in C/C++ you almost never have a single executable. You have
an executable plus a good bunch of linked libraries (*.dll in Windows,
*.so in Linux). In PHP you only have the source code files you write:
the interpreter runs the one you instruct it to and some other files may
get run as well if you linked them from the main file.
Whatever, you should first learn some basics about PHP and, if that's
the case, about how the web works (it's entirely different from desktop
apps).
--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://borrame.com
-- Mi web de humor satinado: http://www.demogracia.com
--
|
|
|