Code snippets

You will find here 269 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 ™.

This snippet shows how to display a money amount with Twig. There's a filter for that, and it handles the current locale. The fol...

Twig

Published on 2023-02-25 • Modified on 2023-02-25

 View the code


This snippet shows how to get the name of a Twig template inside a Twig template. Yes, this is inception! Not so hard as there is...

Twig

Published on 2023-02-18 • Modified on 2023-02-18

 View the code


This snippet shows how to cache data with the Symfony CacheItemPoolInterface service. In a previous snippet, we saw how to cache ...

Symfony

Published on 2023-02-14 • Modified on 2023-02-14

 View the code


This snippet shows how to disable the translations for the test environment with Symfony. The goal is to test the translation code...

Symfony

Published on 2023-01-31 • Modified on 2023-01-31

 View the code


This snippet shows how to retrieving the attributes' parameters of a PHP class with reflection. As you can see, it's straightforwa...

PHP

Published on 2023-01-26 • Modified on 2023-01-26

 View the code


This snippet shows a YAML template to create a Symfony tagged iterator service: 1. We activate autowiring and autoconfigure. 2. We...

Symfony

Published on 2023-01-06 • Modified on 2023-01-06

 View the code


This snippet shows how to get a DateTime object from a DateTimeImmuntable object with PHP. We can use the setTimestamp() function ...

PHP

Published on 2023-01-03 • Modified on 2023-01-03

 View the code


This snippet shows how to deactivate the profiler (debug bar) simultaneously wit the debug mode with Symfony. We can use this litt...

Symfony

Published on 2023-01-02 • Modified on 2023-01-02

 View the code


This snippet shows how to create a Docker compose health check for HTTP services with wget. Usually, we can use CURL for these kin...

Docker

Published on 2022-12-26 • Modified on 2022-12-26

 View the code


This snippet shows how to put in place a health check for a docker Redis service in a docker-compose file. There is the ping funct...

Docker

Published on 2022-12-17 • Modified on 2022-12-17

 View the code