diff --git a/internals/zendapi/functions/get_zend_version.xml b/internals/zendapi/functions/get_zend_version.xml
index eb3aa794d9..e5478c6413 100644
--- a/internals/zendapi/functions/get_zend_version.xml
+++ b/internals/zendapi/functions/get_zend_version.xml
@@ -1,9 +1,9 @@
-
+
get_zend_version
- ...
+ Get Zend Engine version string
@@ -14,31 +14,22 @@
void
- ...
-
-
-
-
- &reftitle.parameters;
-
-
-
- void
-
-
- ...
-
-
-
-
+ get_zend_version returns a verbose version string
+ containing both version and copyright information for the Zend Engine
+ in use.
&reftitle.returnvalues;
- ...
+ A Zend version string like:
+
+
+ Zend Engine v2.0.5, Copyright (c) 1998-2006 Zend Technologies
+
+
diff --git a/internals/zendapi/functions/zend_error.xml b/internals/zendapi/functions/zend_error.xml
index 31119e4dd8..195d34dd18 100644
--- a/internals/zendapi/functions/zend_error.xml
+++ b/internals/zendapi/functions/zend_error.xml
@@ -1,14 +1,15 @@
-
+
zend_error
- ...
+ Generate error message and trigger error handling
&reftitle.description;
#include <zend.h>
+ #include <zend_errors.h>
zend_error
inttype
@@ -28,7 +29,13 @@
type
- ...
+ One of E_ERROR, E_WARNING,
+ E_PARSE, E_NOTICE,
+ E_CORE_ERROR, E_CORE_WARNING,
+ E_COMPILE_ERROR, E_COMPILE_WARNING,
+ E_USER_ERROR, E_USER_WARNING,
+ E_USER_NOTICE, E_STRICT, or
+ E_RECOVERABLE_ERROR.
@@ -36,7 +43,7 @@
format
- ...
+ A printf format string.
@@ -44,7 +51,7 @@
...
- ...
+ Output parameters for the format string.
@@ -52,13 +59,6 @@
-
- &reftitle.returnvalues;
-
- ...
-
-
-