diff options
author | Tiago Natel de Moura <t.nateldemoura@f5.com> | 2020-08-25 13:48:33 +0100 |
---|---|---|
committer | Tiago Natel de Moura <t.nateldemoura@f5.com> | 2020-08-25 13:48:33 +0100 |
commit | 244ffb2829cfbac26e013988474184d6050504fe (patch) | |
tree | aa6376887214453f539f6c19802d1d07d830fca5 /test/php | |
parent | 30a242aa3cbfc3c3368ba0b6d2b4e579b31dc553 (diff) | |
download | unit-244ffb2829cfbac26e013988474184d6050504fe.tar.gz unit-244ffb2829cfbac26e013988474184d6050504fe.tar.bz2 |
Tests: PHP extension mounts.
Diffstat (limited to 'test/php')
-rw-r--r-- | test/php/list-extensions/index.php | 11 | ||||
-rw-r--r-- | test/php/list-extensions/php.ini | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/test/php/list-extensions/index.php b/test/php/list-extensions/index.php new file mode 100644 index 00000000..d6eb40d0 --- /dev/null +++ b/test/php/list-extensions/index.php @@ -0,0 +1,11 @@ +<?php + +function quote($str) { + return '"' . $str . '"'; +} + +header('Content-Type: application/json'); + +print "[" . join(",", array_map('quote', get_loaded_extensions())) . "]"; + +?> diff --git a/test/php/list-extensions/php.ini b/test/php/list-extensions/php.ini new file mode 100644 index 00000000..5848a0f2 --- /dev/null +++ b/test/php/list-extensions/php.ini @@ -0,0 +1 @@ +extension=json.so |