PHP 8.3.4 Released!

memcache_debug

(PECL memcache >= 0.2.0)

memcache_debugTurn debug output on/off

Description

memcache_debug(bool $on_off): bool

memcache_debug() turns on debug output if parameter on_off is equal to true and turns off if it's false.

Note:

memcache_debug() is accessible only if PHP was built with --enable-debug option and always returns true in this case. Otherwise, this function has no effect and always returns false.

Parameters

on_off

Turns debug output on if equals to true. Turns debug output off if equals to false.

Return Values

Returns true if PHP was built with --enable-debug option, otherwise returns false.

add a note

User Contributed Notes 2 notes

up
0
csongor at halmai dot hu
9 years ago
In PHP 5.5.14 this function returns NULL (not TRUE or FALSE). I have no information about other PHP releases.
up
0
markus at buyways dot nl
14 years ago
This method is deprecated in at least PHP 5.2.6

memcache_debug() [<a href='function.memcache-debug'>function.memcache-debug</a>]: memcache_debug() is deprecated, please use a debugger (like Eclipse + CDT)
To Top