summaryrefslogtreecommitdiffhomepage
path: root/test/php
diff options
context:
space:
mode:
authorTiago Natel de Moura <t.nateldemoura@f5.com>2020-08-25 13:48:33 +0100
committerTiago Natel de Moura <t.nateldemoura@f5.com>2020-08-25 13:48:33 +0100
commit244ffb2829cfbac26e013988474184d6050504fe (patch)
treeaa6376887214453f539f6c19802d1d07d830fca5 /test/php
parent30a242aa3cbfc3c3368ba0b6d2b4e579b31dc553 (diff)
downloadunit-244ffb2829cfbac26e013988474184d6050504fe.tar.gz
unit-244ffb2829cfbac26e013988474184d6050504fe.tar.bz2
Tests: PHP extension mounts.
Diffstat (limited to 'test/php')
-rw-r--r--test/php/list-extensions/index.php11
-rw-r--r--test/php/list-extensions/php.ini1
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