summaryrefslogtreecommitdiffstats
path: root/tembed.c
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-05-14 15:05:29 +0200
committerRemi Collet <remi@remirepo.net>2019-05-14 15:05:29 +0200
commit6553c0c2a63e1038945c80aef2c09a92804cc398 (patch)
treeb40df25898af5bd1212b1eac2fdde328f029db5c /tembed.c
parent86de6e2d3d3d91507f05b0ca38cc19dee2506bd4 (diff)
v7.3.6RC1
Diffstat (limited to 'tembed.c')
-rw-r--r--tembed.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/tembed.c b/tembed.c
new file mode 100644
index 0000000..60595ea
--- /dev/null
+++ b/tembed.c
@@ -0,0 +1,15 @@
+#include <stdio.h>
+#include <php_embed.h>
+
+int main (int argc, char*argv[]) {
+ PHP_EMBED_START_BLOCK(argc, argv)
+ zval ver;
+ zend_eval_string("phpversion();", &ver, "Get version" TSRMLS_CC);
+ convert_to_string(&ver);
+ php_printf("Build PHP Version: %s\n", PHP_VERSION);
+ php_printf("Running PHP Version: %s\n", Z_STRVAL(ver));
+ zval_dtor(&ver);
+ PHP_EMBED_END_BLOCK()
+
+ return 0;
+}