summaryrefslogtreecommitdiffstats
path: root/tembed.c
diff options
context:
space:
mode:
Diffstat (limited to 'tembed.c')
-rw-r--r--tembed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tembed.c b/tembed.c
index 60595ea..dcb8052 100644
--- a/tembed.c
+++ b/tembed.c
@@ -1,12 +1,12 @@
#include <stdio.h>
-#include <php_embed.h>
+#include <sapi/embed/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("Build PHP Version: %s\n", PHP_VERSION);
php_printf("Running PHP Version: %s\n", Z_STRVAL(ver));
zval_dtor(&ver);
PHP_EMBED_END_BLOCK()