Code snippets
You will find here 221 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 is a classic JavaScript snippet we all used at least once! There are several ways to achieve this, but I think the following ...
JavaScript
Published on 2020-01-06 • Modified on 2020-01-06
The str_split function is not well known. It converts a string into an array of characters (with the default second parameter). It...
PHP
Published on 2019-12-05 • Modified on 2019-12-05
In this snippet, we will see how to read and modify a private property of a PHP object. I recently had a concrete case when I have...
PHP
Published on 2019-12-03 • Modified on 2020-02-03
This is my deploy configuration for the EasyDeploy bundle. I finally could delete a "small" hack to modify a private property to m...
Symfony
Published on 2019-12-01 • Modified on 2019-12-01
You can generate a command with the maker bundle (php bin/console make:command). I use a slightly different template where the hel...
Symfony
Published on 2019-11-24 • Modified on 2019-11-24
It's a widespread need to have to get the referrer of the current request. Of course, it can be done via the Symfony request value...
Symfony
Published on 2019-11-20 • Modified on 2019-11-20
When having to process a large number of rows with Doctrine, it's not a good idea to use the standard getResult function as you ru...
Doctrine
Published on 2019-11-16 • Modified on 2019-11-27
This is an example of modern usage of JavaScript and functional programming you must know to produce concise and readable code. In...
JavaScript
Published on 2019-11-15 • Modified on 2019-11-15
This is the docker-compose file I am using for Redis. It's very concise, you can also specify the image version number: eg: redis:...
Docker
Published on 2019-11-09 • Modified on 2019-11-09
[Edit 2022-04-27] I use PHP 8 attributes now, click on the "read the doc" link to see a relevant example. 🙃 This is a small trick...
Doctrine
Published on 2019-11-07 • Modified on 2022-04-27