symfony api opensearch plugin

In case you didn't notice, as of today (well, yesterday really) the symfony's api documentation features an opensearch plugin with autocompletion, that you can use straight from the comfort of your favorite browser (given that it supports the opensearch standard, which is the case for at least...

symfony: use your own View class

The view class name in symfony is determined per-module, it means that you need to use a module-level configuration setting via the module.yml configuration file. Say you want to use the myView class...

Replacing short tags with proper PHP tags 1

This is a little script I made to get rid of those damned short tags. [php] <?php while ($file = trim(fgets(STDIN))) { $content = file_get_contents($file); $search = array('/<\?=/',...

Good morning, jour #3 11

Bon ben ce matin je me suis réveillé avant le début de la période de réveil de mon Axbo, du coup je me suis levé, puisque je commence a prendre cette habitude. Par contre j'ai remarqué que l'Axbo...

Multiple domains for one symfony project, the basics, config file version 7

When I published my post about using a single symfony application to serve multiple domains using a database to store the site-specific data, there was some people to complain about the extra query...