Skip to content

Instantly share code, notes, and snippets.

@iio7
Forked from InFog/proceduralphp.md
Last active April 7, 2021 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iio7/017821f374de0be0d5d5a96608eb1341 to your computer and use it in GitHub Desktop.
Save iio7/017821f374de0be0d5d5a96608eb1341 to your computer and use it in GitHub Desktop.
PHP Procedural Framework Manifesto

Procedural PHP Manifesto

  1. Procedural Code over Object Orientation
  • No one needs OO to develop web applications
  1. Explicitly load what you need over autoloaders
  • Autoloaders are complex, we need manual control. Use require.
  1. One PHP file per URL
  • The web server IS the front controller. That's how the architecture is supposed to work.
  • PHP cannot do MVC.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment