PHP 8.5.0 Alpha 4 available for testing

Voting

: six plus three?
(Example: nine)

The Note You're Voting On

padys
12 years ago
In my case this code does NOT work:
<?php
$memcache
->set('index', 'deleted', 0, -1);
?>
because of expire == -1.

I set expire = 1 (and I prefer "replace"):
<?php
$memcache
->replace('index', '', 0, 1);
?>

<< Back to user notes page

To Top