We shall start at the very beginning. PHP is an interpreted language, which means that every time the source code of a PHP program runs, it is parsed (broken into pieces and analyzed) and executed by another program called the interpreter. The PHP interpreter is normally either a standalone binary executable or shared library embedded into a web server (Apache), and before we can run any PHP code, we need to make sure the interpreter is available on the system.

错误:搜索内容不能为空,请输入英文关键词
错误:关键词超出字数限制,请精简
高级检索

Getting Started

  • Paul Tregoing

摘要

We shall start at the very beginning. PHP is an interpreted language, which means that every time the source code of a PHP program runs, it is parsed (broken into pieces and analyzed) and executed by another program called the interpreter. The PHP interpreter is normally either a standalone binary executable or shared library embedded into a web server (Apache), and before we can run any PHP code, we need to make sure the interpreter is available on the system.