Récupérer la liste des extensions PHP actives et leurs versions

Publié le 07/10/2021 • Actualisé le 07/10/2021


English language detected! 🇬🇧

  We noticed that your browser is using English. Do you want to read this post in this language?

Read the english version 🇬🇧 Close

Dans ce bout de code, nous voyons comment récupérer la liste des extensions PHP actives et leurs versions. J'utilise une instruction d'une ligne grâce à une fonction fléchée, mais la version avec une boucle simple est plus lisible. En ligne de commande on peut utiliser php -m, mais ça ne donne pas la version des extensions utilisées.


<?php

declare(strict_types=1);

namespace App\Controller\Snippet;

/**
 * J'utilise un trait PHP afin d'isoler chaque snippet dans un fichier.
 * Ce code doit être apellé d'un contrôleur Symfony étendant AbstractController (depuis Symfony 4.2)
 * ou Symfony\Bundle\FrameworkBundle\Controller\Controller (Symfony <= 4.1).
 * Les services sont injectés dans le constructeur du contrôleur principal.
 */
trait Snippet168Trait
{
    public function snippet168(): void
    {
        $extensionsWithVersion = array_combine(get_loaded_extensions(), array_map(static fn (string $extension) => phpversion($extension), get_loaded_extensions()));
        var_dump($extensionsWithVersion);

        // loop version
        $extensionsWithVersion = [];
        foreach (get_loaded_extensions() as $extension) {
            $extensionsWithVersion[$extension] = phpversion($extension);
        }
        var_dump($extensionsWithVersion);

        // That's it! 😁
    }
}

 Exécuter le snippet  ≪ this.showUnitTest ? this.trans.hide_unit_test : this.trans.show_unit_test ≫  Plus sur Stackoverflow   Lire la doc  Plus sur le web

  Travaillez avec moi !

<?php

declare(strict_types=1);

namespace App\Tests\Integration\Controller\Snippets;

use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

/**
 * @see Snippet168Trait
 */
final class Snippet168Test extends KernelTestCase
{
    /**
     * @see Snippet168Trait::snippet168
     */
    public function testSnippet168(): void
    {
        $extensionsWithVersion = array_combine(get_loaded_extensions(), array_map(static fn (string $extension) => phpversion($extension), get_loaded_extensions()));

        $extensionsWithVersionLoop = [];
        foreach (get_loaded_extensions() as $extension) {
            $extensionsWithVersionLoop[$extension] = phpversion($extension);
        }

        self::assertSame($extensionsWithVersion, $extensionsWithVersionLoop);
    }
}