summaryrefslogtreecommitdiffhomepage
path: root/test/php/list-extensions/index.php
blob: d6eb40d0508fcb65d50fac2995d8f3fb76cff498 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php

function quote($str) {
    return '"' . $str . '"';
}

header('Content-Type: application/json');

print "[" . join(",", array_map('quote', get_loaded_extensions())) . "]";

?>