6 new PHP analyzers in Exakat 0.10.3

6 new PHP analyzers in Exakat 0.10.3 Exakat 0.10.3 shipped with 6 new PHP analyzers : see the changelog. Here is a short presentation of them : Use array_column() array_column() is a little known PHP native function. Read about the story : Ben Rasmey tells it himself : https://benramsey.com/projects/array-column/. When you plan to contribute to the PHP code with a new […]

Where can you get an elephpant, the PHP elephant ?

Where can you get an elephpant ? The elephpant is the famous unofficial logo of the PHP community, turned into a snugly plush toy. They have been around the Internet since 2007, and may be met about everywhere. Elephpants have been sighted on every emerged continent in the world. But where can you get an elephpant ? There […]

PHP likes sorting too much

PHP likes to sort. Of course, there is sort(), ksort() and all the cousins. But, PHP actually sorts too much. My first encounter with the problem is the infamous array_unique(). Now, this is also affecting glob() and scandir(). I’m looking for others. Until then, check your code. array_unique() is also sorting array_unique() collects distinct values […]

Exakat @ PHP UK Conference the 16TH & 17TH FEBRUARY 2017 at The Brewery, London

PHP UK CONFERENCE 16TH & 17TH FEBRUARY 2017 The Brewery, London Exakat will animate two session “Last train for PHP 7.1” and “Static analysis saved my code tonight” at the PHP UK CONFERENCE the 16TH & 17TH FEBRUARY 2017 The Brewery, London. More information on the PHP UK CONFERENCE website  

Prevent multiple PHP scripts at the same time

Prevent multiple PHP scripts at the same time Like everything, it all started from a simple problem : how to prevent multiple PHP scripts at the same time. And turned into an odyssey of learning, full of evil traps and inglorious victories. In the end, it works, that’s the most satisfying and it possibly matters to […]