ConFoo Montreal 2026: Call for Papers

Voting

: eight minus six?
(Example: nine)

The Note You're Voting On

vbaspcppguy at gmail dot com
14 years ago
According to the documents, $timeout is not required, but for me if I did not include it regardless of value, it fired an error. I made a simple fix for it.

<?php
class memcache_tools extends memcache
{
public function
delete($key, $expire=0)
{
parent::delete($key, $expire);
}
}
?>

This will force it to behave as it should regardless of version.

<< Back to user notes page

To Top