summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjvoisin2019-02-23 12:06:51 +0100
committerjvoisin2019-02-23 12:12:45 +0100
commitd03c3c8d01f6f507bf844fec07477f30e3db61d9 (patch)
tree040773d005257a0541da580c26bbb2b0831155b2 /doc
parenta48297dfc1144931e18073a87ed83ea337e3d37a (diff)
Fix the testsuite on php8.
In php8, it's non-trivial to hook strlen, since this function is usually optimized away by the compiler.
Diffstat (limited to 'doc')
-rw-r--r--doc/source/config.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/source/config.rst b/doc/source/config.rst
index 5f28532..89e063f 100644
--- a/doc/source/config.rst
+++ b/doc/source/config.rst
@@ -342,6 +342,8 @@ It's currently not possible to:
342 without hooking the other, at least 342 without hooking the other, at least
343 `for now <https://github.com/nbs-system/snuffleupagus/issues/190>`__). 343 `for now <https://github.com/nbs-system/snuffleupagus/issues/190>`__).
344 This is why hooked ``print`` will be displayed as ``echo`` in the logs. 344 This is why hooked ``print`` will be displayed as ``echo`` in the logs.
345- Hook `strlen`, since in latest PHP versions, this function is usually
346 optimized away by the compiled.
345 347
346 348
347Examples 349Examples