<?php
$mem = new Memcache();
$flag = $mem -> connect('localhost',11211);
$mem -> set('color','red',0,30);//
$mem -> set('age',23,0,time()+30);//this code does not work because of "time()"
code time() which does not work
the result of my code run.