Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions en/development/debugging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Basic Debugging
.. php:function:: debug(mixed $var, boolean $showHtml = null, $showFrom = true)

The ``debug()`` function is a globally available function that works
similarly to the PHP function ``print\_r()``. The ``debug()`` function
similarly to the PHP function ``print_r()``. The ``debug()`` function
allows you to show the contents of a variable in a number of
different ways. First, if you'd like data to be shown in an
HTML-friendly way, set the second parameter to ``true``. The function
Expand All @@ -26,7 +26,7 @@ has been set to ``true``.
.. php:function stackTrace()

The ``stackTrace()`` function is available globally, and allows you to output
a stack trace whereever the function is called.
a stack trace wherever the function is called.

Using the Debugger Class
========================
Expand Down