Code snippets
You will find here 295 code snippets I find useful so I don't have to Google ™ or Stackoverflow ™ them when I need. There are also code snippets I always forget! 😁 Sometimes, related links to the code will be available. The main difference with other random snippets you will find on the web is that in most cases (for the Symfony related ones) you will be able to run them directly from this website to check the output so you can verify it works as expected ™.
Here is a clean way to do this using the URL JavaScript object. In this snippet, 1) We get the current URL 2) We create an URL obj...
JavaScript
Published on 2019-02-27 • Modified on 2019-02-27
This is my first step to learn Docker in 2019 😊. This snippet comes from a Tweet of @pierstoval. I was bluffed as it was indeed re...
Docker
Published on 2019-02-12 • Modified on 2019-02-12
Well, it's in fact the Twig helper that I am using on this website to show all the snippets. You already have a native source Twi...
Symfony
Published on 2019-02-08 • Modified on 2019-02-10
It is sometimes useful to be able to use the Symfony validation services outside of the form context. In a controller for example ...
Symfony
Published on 2019-01-30 • Modified on 2019-01-30
It is sometimes helpful to have this information. There are various ways to get the Symfony version. In CLI, we can use the bin/c...
Symfony
Published on 2019-01-15 • Modified on 2023-01-06
The trick here is that the like must be in the where clause andWhere() whereas the wildcard character % must be passed to the setP...
Doctrine
Published on 2019-01-08 • Modified on 2019-01-08
This one is very useful because it allows you to do accent insensitive searches on the user input. It allows to have the same resu...
JavaScript
Published on 2019-01-06 • Modified on 2019-01-06
The $_route and $_route_params magic variables are available in controllers' actions. We can declare them as function arguments or...
Symfony
Published on 2018-12-11 • Modified on 2018-12-11
I have always used shell (.sh) scripts to streamline all my dev tasks on Symfony projects. But I discovered (here and here) that w...
Symfony
Published on 2018-11-30 • Modified on 2021-10-10
Sometimes it is useful to get the referrer routing information when you have a page that have multiple access points. Knowing the ...
Symfony
Published on 2018-10-31 • Modified on 2018-11-03