Code snippets

You will find here 109 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 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 force the output of the Symfony debug functions for CLI. When using the dd() and dump() functions, the o...

Symfony

Published on 2022-12-13 • Modified on 2022-12-13

 View the code


This snippet shows how to unit test a Symfony custom constraint with the ConstraintValidatorTestCase. In the previous snippet, we ...

Symfony

Published on 2022-11-06 • Modified on 2022-11-06

 View the code


This snippet shows how to unit test a custom Symfony validation constraint. One learns every day; I made this snippet inspired by ...

Symfony

Published on 2022-11-05 • Modified on 2022-11-05

 View the code


This snippet shows how to anonymize an IP address with Symfony. We can use the IpUtils class which handles both V4 and V6 addresse...

Symfony

Published on 2022-10-23 • Modified on 2022-10-23

 View the code


This snippet shows how to check if a Symfony route exists. We mustn't use the getRouteCollection() method because it regenerates t...

Symfony

Published on 2022-10-22 • Modified on 2022-10-22

 View the code


This snippet shows how to use the Symfony string component to get the singular or plural of a word. It isn't easy to do this as th...

Symfony

Published on 2022-10-15 • Modified on 2022-10-15

 View the code


This snippet shows how to generate a slug with the Symfony string component. Usually, when using the Symfony string component, we ...

Symfony

Published on 2022-10-11 • Modified on 2022-10-11

 View the code


This snippet shows how to select an invalid choice value of a select form field in a Symfony functional test. Indeed, if you try t...

Symfony

Published on 2022-08-19 • Modified on 2022-08-19

 View the code


This snippet shows how to get the id of a Symfony form inside a Twig template. This is useful when wanting to give a particular at...

Symfony

Published on 2022-08-06 • Modified on 2022-08-06

 View the code