diff --git a/reference/errorfunc/functions/debug-backtrace.xml b/reference/errorfunc/functions/debug-backtrace.xml
index ad2e3b6f87..5c7e30ea37 100644
--- a/reference/errorfunc/functions/debug-backtrace.xml
+++ b/reference/errorfunc/functions/debug-backtrace.xml
@@ -10,7 +10,7 @@
&reftitle.description;
arraydebug_backtrace
- boolprovide_objecttrue
+ intoptionsDEBUG_BACKTRACE_PROVIDE_OBJECT
debug_backtrace generates a PHP backtrace.
@@ -22,10 +22,32 @@
- provide_object
+ options
- Whether or not to populate the "object" index.
+ Since 5.3.6, this parameter is a bitmask for the following options:
+
+ debug_backtrace options
+
+
+
+ DEBUG_BACKTRACE_PROVIDE_OBJECT
+
+ Whether or not to populate the "object" index.
+
+
+
+ DEBUG_BACKTRACE_IGNORE_ARGS
+
+ Whether or not to omit the "args" index and thus all the method arguments to
+ to save memory.
+
+
+
+
+
+ Before 5.3.6, only value recognized is &true; or &false;, which is the same as
+ setting and unsetting DEBUG_BACKTRACE_PROVIDE_OBJECT option.
@@ -124,6 +146,13 @@
+
+ 5.3.6
+
+ The parameter provide_object changed to options and additional option
+ DEBUG_BACKTRACE_IGNORE_ARGS is added.
+
+
5.2.5