2. PHP is interpreted (not compiled) 3. Every time a script is loaded, should be interpreted by PHP 4. If a bytecode cache (like APC) isn’t used, syntax checking is performed every time
and functions are read at every request made to applications 2. Modern frameworks use lazy loading (autoload) for execute only the code needed 3. Continuous code reading and interpreting could be expensive and impact your application performance
loaded together with PHP once time on the web server dispatch process 2. Classes and functions provided by the extension are ready to use for any application 3. Code isn’t interpreted because is compiled to a specifically platform and processor