Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   Update memcache data (http://www.bvlist.com/showthread.php?t=12364)

szaby 23rd May 2021 22:03

Update memcache data
 
Hello!

I want to solve it so that you don't have to write this in 3 lines but in array form.

PHP Code:

$cachedData['invites'] = $inv;
$cachedData['seedbonus'] = $cache;
$cachedData['bonuscomment'] = $bonuscomment1;

$memcache->replace($key$cachedDatafalse3600); 

I mean something like this:

PHP Code:

$cachedData = ['invites'=> $inv,'seedbonus'=> $cache,'bonuscomment'=> $bonuscomment1];
                
$memcache->replace($key$cachedDatafalse3600); 

But it doesn't work. Anyone know a solution?
The data is stored in an array:
http://prntscr.com/13bfd0k

Thanks for the help!


All times are GMT +2. The time now is 23:26.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.