Tests: PHP extension mounts.

This commit is contained in:
Tiago Natel de Moura
2020-08-25 13:48:33 +01:00
parent 30a242aa3c
commit 244ffb2829
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
function quote($str) {
return '"' . $str . '"';
}
header('Content-Type: application/json');
print "[" . join(",", array_map('quote', get_loaded_extensions())) . "]";
?>

View File

@@ -0,0 +1 @@
extension=json.so