Code snippets

You will find here 4 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 order a PHP array of objects by a given property. The sort function is in the snippet class, but if we w...

PHP

Published on 2023-05-31 • Modified on 2023-05-31

 View the code


This snippet shows how to convert an array into an object with the Symfony serializer. That's a common need to denormalize an ar...

Symfony

Published on 2023-04-13 • Modified on 2023-04-13

 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 access an object property or array index with Twig dynamically. We can use the same attribute() function...

Twig

Published on 2022-06-20 • Modified on 2022-06-20

 View the code