copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
What is Symfony What is Symfony Symfony is a set of PHP Packages, a Web Application framework, a Philosophy, and a Community — all working together in harmony
Routing (Symfony Docs) When your application receives a request, it calls a controller action to generate the response The routing configuration defines which action to run for each incoming URL It also provides other useful features, like generating SEO-friendly URLs (e g read intro-to-symfony instead of index php?article_id=57)
Scheduler (Symfony Docs) Symfony Scheduler Basics The main benefit of using this component is that automation is managed by your application, which gives you a lot of flexibility that is not possible with cron jobs (e g dynamic schedules based on certain conditions) At its core, the Scheduler component allows you to create a task (called a message) that is executed by a service and repeated on some schedule It has
The Routing Component (Symfony Docs) Before we start diving into the Routing component, let's refactor our current framework just a little to make templates even more readable: 1 2 3 4 5 6 7 8 9 10 11 12
Symfony Packages Symfony Packages are a set of decoupled and reusable PHP libraries They have become the standard foundation on which the best PHP applications are built on
Security (Symfony Docs) Symfony provides many tools to secure your application Some HTTP-related security tools, like secure session cookies and CSRF protection are provided by default The SecurityBundle, which you will le…