PHP » GoLang | 
        
            
            login |
            register |
            
            about
            
             | 
    
                GoLang Memcached::fetchAll
                                request it (714)
                             
                            
                            GoLang replacement for PHP's Memcached::fetchAll
                            [edit | history]
                        
                    
                             Memcached::fetchAll(PECL memcached >= 0.1.0) Memcached::fetchAll — Fetch all the remaining results Description
   public array Memcached::fetchAll
    ( void
   ) 
  Memcached::fetchAll() retrieves all the remaining results from the last request. ParametersThis function has no parameters. Return Values
   Returns the results or  Examples
 Example #1 Memcached::getDelayed() example 
<?phpThe above example will output: 
array(2) {
  [0]=>
  array(3) {
    ["key"]=>
    string(3) "int"
    ["value"]=>
    int(99)
    ["cas"]=>
    float(2363)
  }
  [1]=>
  array(3) {
    ["key"]=>
    string(5) "array"
    ["value"]=>
    array(2) {
      [0]=>
      int(11)
      [1]=>
      int(12)
    }
    ["cas"]=>
    float(2365)
  }
}
See Also
 
  | 
            
            
                
                 
                    more
                     
                Most requested
 
                    more
                     
            Last requests
  |